I desided to make my code clearer by replacing
if (wrappedSet.length > 0)
to something like
if (wrappedSet.exists())
Is any native jq function for this? Or the only way is to extend it using $.fn.exists = ... ?
| ||||
|
feedback
|
|
You could simply use
That will evaluate to TRUE if you have 1 or more elements and to FALSE if you have 0 elements | ||||
|
feedback
|
|
The function You could just do this:
since | |||
|
feedback
|
|
You're not the first one ;-) http://forum.jquery.com/topic/selector-exists-would-be-a-nice-addition And | |||
|
feedback
|
|
there's no native jquery function for it, you'll have to do an exists function like you said. here's a link to a discussion in jquery about it: http://forum.jquery.com/topic/selector-exists-would-be-a-nice-addition its best to just use selector.length like the otehrs said. saves you the extra () :P | |||
|
feedback
|