[jQuery] Re: find is finding what?

2007-06-12 Thread Trans
On Jun 11, 7:30 pm, Erik Beeson [EMAIL PROTECTED] wrote: jQuery always returns a jQuery object, regardless of whether it finds anything or not. To see if anything has been selected, use last.length or last.size() being greater than 0. This is by design so chaining won't break if nothing is

[jQuery] Re: find is finding what?

2007-06-11 Thread Erik Beeson
jQuery always returns a jQuery object, regardless of whether it finds anything or not. To see if anything has been selected, use last.length or last.size() being greater than 0. This is by design so chaining won't break if nothing is selected: $('.someSelector').addClass('highlighted'); Will