[jQuery] Re: simple selector problem :beginner();

2008-12-08 Thread Klaus Hartl
> $("span", $(this)) There is really no need to wrap this in a jQuery object: $('span', this) --Klaus

[jQuery] Re: simple selector problem :beginner();

2008-12-04 Thread MorningZ
The second parameter is the "context" to search So $(this "span") would be $("span", $(this)) or $(this).find("span") On Dec 4, 9:56 am, tlob <[EMAIL PROTECTED]> wrote: > I like to select every span, thats in "this" > $(this "span") > > sorry, simple and stupid... > > full function: > f