[jQuery] Re: find() - Weird behavior

2007-05-09 Thread cesare
> It would probably be simpler to do this (untested): > > $("item").each(function() { > var pictureTitle = $(this).find("title").eq(0).text(); > var pictureUrl = $(this).find("link").eq(0).text(); > // ... > }); Thanks! > > Experimenting I solved with a: > >

[jQuery] Re: find() - Weird behavior

2007-05-07 Thread Scott Sauyet
cesare wrote: I am trying to parse the content of a flickr feed like this: http://www.flickr.com/services/feeds/photos_public.gne?tags=colorful&format=rss_200 $("item").each ( function() { var titleTag = $(this).find("title")[0]; v