[jQuery] Re: simple selector problem :beginner();
> $("span", $(this)) There is really no need to wrap this in a jQuery object: $('span', this) --Klaus
[jQuery] Re: simple selector problem :beginner();
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