[jQuery] Re: Selecting children of "this" ?

2009-06-24 Thread september
ough majority of > examples on jquery.com you would come up with: > $(this).children("li").animate.(...) > It's probably easiest to use the latter syntax to learn at first. Just > reading these 2 it is more obvious to beginner what latter version means, and > th

[jQuery] Selecting children of "this" ?

2009-06-24 Thread september
Hello, I'm just starting with jQuery and would like to know the best way to identify children elements of "this" to perform animation on. Some Googling brought me this seemingly useful code snippet: jQuery ("img", this); But I don't know the correct syntax for this. Here's my newbie shot-in-the