So I know that you can do:
if ($(selector).length>0) {
// Do something
}
But is there a more elegant method?
|
So I know that you can do:
But is there a more elegant method?
| ||||
|
feedback
|
|
Yes!
There you go! This is in response to: Herding Code podcast with Jeff Atwood | |||||||||||||||||||||
feedback
|
|
In JavaScript, everything 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. | |||||||||||||||||||||
feedback
|
|
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.
| |||||||||||||||||||
feedback
|
|
you can use this // if element exists
// if element not exists
| ||||
|
feedback
|
|
You can use:
A little more elegant, perhaps. | |||||
feedback
|
|
I have found
My only suggestion is to perform an additional check for
I'm still looking for a better solution though as this one is a bit heavy. Edit: WARNING! This doesn't work in IE when
| ||||
|
feedback
|
| ||||
|
feedback
|
|
I have found that sometimes | ||||
|
feedback
|
|
There's no need for jquery really. With plain JavaScript its easier and semantically correct to check for:
If for any reason you don't want to put an id to the element, you can still use all the other javascript methods designed to access the DOM, such as jquery es really cool, but don't let pure js to fall into oblivion... | |||
feedback
|
|
The fastest and most semantically self explaining way to check for existence is actually by using plain JavaScript:
It is a bit longer to write than the jQuery length alternative, but executes faster since it is a native JS method. And it is better than the alternative of writing your own jQuery function. That alternative is slower, for the reasons @snover stated. But it would also give other programmers the impression that the exists() function is something inherent to jQuery. JavaScript would/should be understood by others editing your code, without increased knowledge debt. NB: Notice the lack of an '#' before the element_id (since this is plain JS, not jQuery). | |||||||
feedback
|
|
I had a case where I wanted to see if an object exists inside of another so I added something to the first answer to check for a selector inside the selector..
| |||
|
feedback
|
|
Learning by doing... your best option would be what Tim Büthe suggests:
| |||||||
feedback
|
|
You can also run a function only if it exists.
Implementation: Hide if it exists
But you don't actually need to do this for hiding because it will return the jquery object either way.
great code, added error statement for my own use. | ||||
|
feedback
|
or shorter...
| |||
|
feedback
|
if ($(selector).length) {}is the most elegant and the fastest. – gradbot Jun 21 '10 at 3:21