Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
154  
if ($(selector).length) {} is the most elegant and the fastest. – gradbot Jun 21 '10 at 3:21
I offer if ($(selector).length) {} too! – mr.soroush Oct 10 '12 at 6:53
1  
Note: In jQuery versions older than 1.4, $('').length // is 1 (ref). So in that case use $(selector || []).length. – Mottie Feb 21 at 18:43

17 Answers

up vote 460 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

share|improve this answer
118  
I just write: if( $(selector).length ){ ... } without the '> 0' – vsync Nov 24 '09 at 9:22
97  
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. – C Snover May 30 '10 at 4:14
65  
@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. – Ben Zotto Aug 2 '10 at 20:52
11  
@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
41  
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. – Ben Zotto Aug 3 '10 at 0:29
show 10 more comments

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.

share|improve this answer
48  
This is the best method, fastest and simplest. – Skone Dec 4 '09 at 1:16
4  
@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
11  
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
3  
doesn't work for me without == 0 – Omu Jun 26 '11 at 11:08
3  
@Jake please accept this one as the correct answer. – Jose Faeti Nov 28 '11 at 14:51
show 6 more comments

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)) { }

Alternatively, from the FAQ:

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

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.

if ( $('#myDiv')[0] ) { //Do something }
share|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
2  
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
5  
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
1  
First example ($('.mySelector').length) works fine, no need to create an exists() wrapper for it. – nickb Sep 14 '10 at 19:16
show 4 more comments

You can use this:

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

// if element not exists
if(!$('selector').length){ //do something }
share|improve this answer

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!

jsFiddle

(function($) {
    if (!$.exist) {
        $.extend({
            exist: function(elm) {
                if (typeof elm == null) return false;
                if (typeof elm != "object") elm = $(elm);
                return elm.length ? true : false;
            }
        });
        $.fn.extend({
            exist: function() {
                return $.exist($(this));
            }
        });
    }
})(jQuery);

minified Using Google Closure. Not tested, but should work fine. :P

(function($){$.exist||($.extend({exist:function(b){if(null==typeof b)return!1;"object"!=typeof b&&(b=$(b));return b.length?!0:!1}}),$.fn.extend({exist:function(){return $.exist($(this))}}))})(jQuery);

USE

// With ID
$.exist("#eleID");
// OR
$("#eleID").exist();

// With class name
$.exist(".class-name");
// OR
$(".class-name").exist();

// With just a tag // Probably not best idea as there will be other tags on the site
$.exist("div");
// OR
$("div").exist();

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 True or False.

jsFiddle

share|improve this answer
+1 for thought.. – rkingon Dec 6 '12 at 21:23

You can use:

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

A little more elegant, perhaps.

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

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

share|improve this answer
4  
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 '12 at 16:30
2  
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 '12 at 8:55
WHile I prefer the Jquery method I always like seeing the original raw method of doing things! Gives more understanding when you see Jquery doing stuff. – PerryCS Feb 10 at 3:04

There's no need for jQuery really. With plain JavaScript it's 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 any other JavaScript method designed to access the DOM.

jQuery is really cool, but don't let pure JavaScript fall into oblivion...

share|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". – vsaraco Nov 14 '11 at 14:24
2  
This code is plain wrong and breaks the functionality of document.getElementById; I sure hope you mean if (document.getElementById('myElement')) { – Jack Jan 21 at 2:43
Jack: I've corrected my answer... Thanks for pointing out such an awful error, I gess I should sleep more! – vsaraco Apr 29 at 3:28

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
share|improve this answer
if ( $('#myDiv').size() > 0 ) { //do something }

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

share|improve this answer
Using length property is preferable, instead of calling size, which runs a method executes some counts and takes memory and processing power. The length is a property. Say you do the size() on a div with 50,000 elements. Also, comparing to 0 is extraneous. You can simply write if(($('#myDiv').size()){} instead. 0 is equivalent to boolean false and any non-zero integer is equivalent to boolean true. – Furbeenator Apr 12 at 18:30
$(selector).length && //Do something
share|improve this answer

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

share|improve this answer

I used typeof to determine if something exists.

if (typeof $('#table').val() != 'undefined') {
}

If you happen to have a table that exists with no records selected, then length gives you a false response.

share|improve this answer

I'm using this:

    $.fn.ifExists = function(fn) {
      if (this.length) {
        $(fn(this));
      }
    };
    $("#element").ifExists( 
      function($this){
        $this.addClass('someClass').animate({marginTop:20},function(){alert('ok')});               
      }
    ); 

Execute the chain only if a jQuery element exist - http://jsfiddle.net/andres_314/vbNM3/2/

share|improve this answer

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;
};
share|improve this answer

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:

$('mySelector').doesExist() // returns true or false

Demo:

doesExist jQuery Plugin

share|improve this answer

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.

share|improve this answer

protected by Andrew Barber Apr 8 at 3:55

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.

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