So I know that you can do:
if ($(selector).length>0) {
// Do something
}
But is there a more elegant method?
|
5
|
So I know that you can do:
But is there a more elegant method?
|
|||
|
|
|
|
Yes!
There you go! This is in response to: Herding Code podcast with Jeff Atwood |
|||
|
|
|
|
if you used:
you would imply that chaining was possible when it is not. This would be better
EDITJust found this in the FAQ: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_test_whether_an_element_exists.3F
EDIT 2you could also use the following. If there are no values in the jQuery obj array then getting the first item in the array would return undefined.
|
||||||||||||
|
|
|
You can use:
A little more elegant, perhaps. |
||
|
|
|
|
In JavaScript, everythig is truthy or falsy and for numbers, 0 means false, everything else true. So you could write:
and you don't need that "> 0" part. |
||
|
|
|
|
|
|||
|
|
|
|
I have found that sometimes |
|||
|
|