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

2009-03-07 Thread JMN
I have the same problem with .find, except running against an HTML string (not AJAX related). ie something like: jQuery(somehtml).find('link').each(... IE,FF,Opera all find the elements ok - chrome & safari just don't find them. jQuery JavaScript Library v1.3.2 J On Feb 7, 4:48 pm, pedalpet

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

2009-02-09 Thread jQuery Lover
Which version of jQuery are you using ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:48 PM, pedalpete wrote: > > like my original statement that works in IE and FF, but not Safari or > Chrome. > Strange > > On Feb 6, 11:17 pm, jQuery Lover

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

2009-02-07 Thread pedalpete
like my original statement that works in IE and FF, but not Safari or Chrome. Strange On Feb 6, 11:17 pm, jQuery Lover wrote: > var newItem=$("div#item", response).html(); > > > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Sat, Feb 7, 2009 at 9:02 AM, pedalpete

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

2009-02-06 Thread jQuery Lover
var newItem=$("div#item", response).html(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:02 AM, pedalpete wrote: > > I'm trying to get a div from an html ajax response. > my code is pretty simple > > [code] >success: function(response){