So I know that you can do:

if ($(selector).length>0) {
    // Do something
}

But is there a more elegant method?

link|improve this question

83  
if ($(selector).length) {} is the most elegant and the fastest. – gradbot Jun 21 '10 at 3:21
feedback

14 Answers

up vote 268 down vote accepted

Yes!

jQuery.fn.exists = function(){return this.length>0;}

if ($(selector).exists()) {
    // Do something
}

There you go!

This is in response to: Herding Code podcast with Jeff Atwood

link|improve this answer
73  
I just write: if( $(selector).length ){ ... } without the '> 0' – vsync Nov 24 '09 at 9:22
58  
Your $.fn.exists example is really, really horrible, and I hope nobody uses it. You’re replacing a property lookup (cheap!) with two function calls, which are much more expensive—and one of those function calls recreates a jQuery object that you already have, which is just silly. – snover May 30 '10 at 4:14
47  
@redsquare: Code readability is the best rationale for adding this sort of function on jQuery. Having something called .exists reads cleanly, whereas .length reads as something semantically different, even if the semantics coincide with an identical result. – quixoto Aug 2 '10 at 20:52
10  
@quixoto, sorry but .length is a standard across many languages that does not need wrapping. How else do you interpret .length? – redsquare Aug 3 '10 at 0:13
21  
In my opinion, it's at least one logical indirection from the concept of "a list length that is greater than zero" to the concept of "the element(s) I wrote a selector for exist". Yeah, they're the same thing technically, but the conceptual abstraction is at a different level. This causes some people to prefer a more explicit indicator, even at some performance cost. – quixoto Aug 3 '10 at 0:29
show 8 more comments
feedback

In JavaScript, everything is truthy or falsy and for numbers, 0 means false, everything else true. So you could write:

if ($(selector).length)

and you don't need that "> 0" part.

link|improve this answer
29  
This is the best method, fastest and simplest. – Skone Dec 4 '09 at 1:16
3  
@MrBoJangles: What makes this the "best" answer? You prefer it over the others, but that doesn't mean everyone else does. I would submit to you that, on average, the "best answer" is the one that is voted to the top. – sohtimsso1970 Apr 24 '11 at 16:10
2  
This is the idiomatic code. The golden monkey, sans the pedantic stew in which we sometimes steep ournselves. This is the git 'r done answer. Some questions lend themselves to discussion. Some just have an answer, like a simple math equation. All the cool kids are using this answer. So let it be written. So let it be done. – MrBoJangles Apr 29 '11 at 22:09
2  
doesn't work for me without == 0 – Chuck Norris Jun 26 '11 at 11:08
2  
@Jake please accept this one as the correct answer. – Jose Faeti Nov 28 '11 at 14:51
show 3 more comments
feedback

if you used:

jQuery.fn.exists = function(){return ($(this).length > 0);}
if ($(selector).exists()) { }

you would imply that chaining was possible when it is not.

This would be better

jQuery.exists = function(selector) {return ($(selector).length > 0);}
if ($.exists(selector)) { }

EDIT

Just found this in the FAQ:

http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_test_whether_an_element_exists.3F

if ( $('#myDiv').length ) { //do something }

EDIT 2

you 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.

if ( $('#myDiv')[0] ) { //do something }
link|improve this answer
2  
The first method reads better. $("a").exists() reads as "if <a> elements exist." $.exists("a") reads as "if there exists <a> elements." – strager Jan 14 '09 at 20:00
1  
true but again, you're implying that chaining is possible and if I tried to do something like $(selector).exists().css("color", "red") it wouldn't work and then I would be =*( – Jon Erickson Jan 15 '09 at 0:31
4  
There are already methods that aren't chainable, like attr and data functions. I do see your point though and, for what it's worth, I just test for length > 0 anyways. – Matthew Crumley Jan 16 '09 at 5:42
That is very true Matthew, thanks for pointing that out, i guess it is just a matter of preference. – Jon Erickson Jan 20 '09 at 20:05
2  
Why on earth would you need to chain this? $(".missing").css("color", "red") already does the right thing… (i.e. nothing) – Ben Blank Sep 8 '10 at 6:43
show 3 more comments
feedback

you can use this

// if element exists

if($('selector').length){ //do something }

// if element not exists

if(!$('selector').length){ //do something }
link|improve this answer
feedback

You can use:

if ($(selector).is('*')) {
  // Do something
}

A little more elegant, perhaps.

link|improve this answer
2  
This is too much for such a simple thing. see Tim Büthe answer – vsync Nov 24 '09 at 9:28
feedback

I have found if ($(selector).length) {} to be insufficient. It will silently break your app when selector is an empty object {}.

var $target = $({});        
console.log($target, $target.length);

// Console output:
// -------------------------------------
// [▼ Object              ] 1
//    ► __proto__: Object

My only suggestion is to perform an additional check for {}.

if ($.isEmptyObject(selector) || !$(selector).length) {
    throw new Error('Unable to work with the given selector.');
}

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 selector is a string.

$.isEmptyObject('hello') // FALSE in Chrome and TRUE in IE
link|improve this answer
feedback
if ( $('#myDiv').size() > 0 ) { //do something }

size() counts the number of elements returned by the selector

link|improve this answer
feedback

I have found that sometimes .length throws an error, but [element locator].size() > 0 works reliably

link|improve this answer
feedback

There's no need for jquery really. With plain JavaScript its easier and semantically correct to check for:

if(document.getElementById = "myElement") {
    //do something...
}

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 getElementsByTagName, DOM index, child selector, etc.

jquery es really cool, but don't let pure js to fall into oblivion...

link|improve this answer
I know: it doesn't answer directly the original question (which asks for a jquery function), but in that case the answer would be "No" or "not a semantically correct solution". – Vincent Nov 14 '11 at 14:24
feedback

The fastest and most semantically self explaining way to check for existence is actually by using plain JavaScript:

if (document.getElementById('element_id')) {
    // Do something
}

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).

link|improve this answer
1  
Totally not the same thing. JQuery selectors can be used for any CSS rule - for example $('#foo a.special'). And it can return more than one element. getElementById can't begin to approach that. – kikito Mar 7 at 16:30
You are correct in that it isn't as broadly applicable as selectors. However, it does the job quite well in the most common case (checking if a single element exists). The arguments of self-explanation and speed still stands. – Magne May 10 at 8:55
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..

// Checks if an object exists.
// Usage:
//
//     $(selector).exists()
//
// Or:
// 
//     $(selector).exists(anotherSelector);
jQuery.fn.exists = function(selector) {
    return selector ? this.find(selector).length : this.length;
};
link|improve this answer
feedback

you can use jQuery's own "isEmptyObject" : http://api.jquery.com/jQuery.isEmptyObject/

if(!$.isEmptyObject('selector')) { // Do something }

Learning by doing... your best option would be what Tim Büthe suggests:

if ($(selector).length)
link|improve this answer
1  
This is doubly incorrect. isEmptyObject is a method on the jQuery object itself, not matched sets, and returns false for both empty and non-empty sets. – Ben Blank Sep 8 '10 at 6:48
ah, the syntax i exampled was obviously, wrong. And I see that it returns false for both empty and non-empty sets. I was convinced that it didn't though – pavsaund Sep 8 '10 at 9:26
feedback

You can also run a function only if it exists.

$.fn.ifExists = function(error, fn) {
if (this.length) {
    $(fn(this));
}
else {
    alert(error);
}
};

Implementation: Hide if it exists

$("a.next").ifExists( function(t) { t.hide(); } );

But you don't actually need to do this for hiding because it will return the jquery object either way.

$.fn.ifExists = function(error, fn) {
if (this.length) {
    $(fn(this));
}
else {
    alert(error);
}
};

$('#button').ifExists("#button does not exits", function(){
    alert("Work");
});

great code, added error statement for my own use.

link|improve this answer
feedback
if ($('selector')!=null)
{    
  // Do something
}

or shorter...

if (!!$('selector'))
{    
  // Do something
}
link|improve this answer
$('selector') will never return null or undefined – DotNET Ninja Apr 30 at 9:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.