How can I check the existence of an element in jQuery?
The current code that I have is this:
if ($(selector).length>0) {
// Do something
}
Is there is a more elegant way to approach this? Perhaps a plugin or a function?
|
Yes!
There you go! This is in response to: Herding Code podcast with Jeff Atwood |
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
If you used
you would imply that chaining was possible when it is not. This would be better:
Alternatively, from the FAQ:
You could also use the following. If there are no values in the jQuery object array then getting the first item in the array would return undefined.
|
|||||||||||||||||||||
|
|
You can use this:
|
||||
|
|
|
Despite the good answers here, the other answers don't quite check for mistaken entries created by the software developer nor does it have variable functionality. Just thought I'd throw my two cents in since I made this really simple jQuery plugin today and care to share it. Below is the plugin code and a link to an example Fiddle for ease of use. Enjoy!
Of course, this plugin could be further extended to be much more fancy (handling multiple calls at once, creating non-existing elements based on a pram), but as it stand now, it does a very simple, very needed function... Does this element exist? Return |
||||
|
|
|
You can use:
A little more elegant, perhaps. |
|||||
|
|
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). |
|||||||||||
|
|
There's no need for jQuery really. With plain JavaScript it's 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 any other JavaScript method designed to access the DOM. jQuery is really cool, but don't let pure JavaScript fall into oblivion... |
|||||||||
|
|
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
|
||||
|
|
|
||||
|
|
I have found that sometimes |
||||
|
|
|
I used
If you happen to have a table that exists with no records selected, then length gives you a false response. |
||||
|
|
|
I'm using this:
Execute the chain only if a jQuery element exist - http://jsfiddle.net/andres_314/vbNM3/2/ |
|||
|
|
|
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..
|
|||
|
|
|
You could try my plugin that I created. Its called doesExist() I had to check if an element exists over and over again so I decided to make a small plugin for that. Usage:
Demo: |
|||
|
|
|
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. |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
if ($(selector).length) {}is the most elegant and the fastest. – gradbot Jun 21 '10 at 3:21$('').length // is 1(ref). So in that case use$(selector || []).length. – Mottie Feb 21 at 18:43