[jQuery] traversing ajax response with .find in Safari/Chrome

2009-02-06 Thread pedalpete
I'm trying to get a div from an html ajax response. my code is pretty simple [code] success: function(response){ var newItem=$(response).find(div#item).html(); alert(newItem); } [/code] This works fine in

[jQuery] Traversing AJAX Response?

2008-04-19 Thread [EMAIL PROTECTED]
Is it possible to parse the HTML of an AJAX response and grab only a certain piece of the response to be displayed by the caller? Specifically, I'm trying to modify a page so that when I hover over a certain set of links, a pop-up window is displayed with the link's target in the pop-up. The