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.

In Mootools, I'd just run if ($('target')) { ... }. Does if ($('#target')) { ... } in jQuery work the same way?

share|improve this question

10 Answers

up vote 243 down vote accepted

As the other commenters are suggesting the most efficient way to do it seems to be:

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

If you absolutely must have an exists() function - which will be slower- you can do:

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

Then in your code you can use

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

As answered here

share|improve this answer
Thanks! Didn't find that one in my search, but that's exactly what I need. – One Crayon Nov 18 '08 at 19:30
what is the point in this when .length does exactly the same? – redsquare May 27 '10 at 3:19
2  
This is one of the sillier plugins I've ever seen... – Alex Sexton May 27 '10 at 4:26
6  
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:13
4  
I have reworded the reply to emphasize that $.fn.exists is slower. – Pat May 31 '10 at 14:58
show 4 more comments

no, jquery always returns a jquery object regardless if a selector was matched or not. You need to use .length

if ( $('#someDiv').length ){

}
share|improve this answer

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

Yet another way:

$('#elem').each(function(){
  // do stuff
});
share|improve this answer
Nice, cleaner approach if you don't want to do anything special if #elem does not exist. – Abdullah Jibaly Feb 9 '11 at 17:09
if ($('#elem')[0]) {
  // do stuff
}
share|improve this answer
I like this for brevity. Can anyone say whether it will work everywhere .length will work? – Sam Hasler Nov 14 '11 at 12:06

I think most of the people replying here didn't quite understand the question, or else I might be mistaken.

The question is "how to check whether or not a selector exists in jQuery."

Most people have taken this for "how to check whether an element exists in the DOM using jQuery." Hardly interchangeable.

jQuery allows you to create custom selectors, but see here what happens when you try to use on e before initializing it;

$(':YEAH');
"Syntax error, unrecognized expression: YEAH"

After running into this, I realized it was simply a matter of checking

if ($.expr[':']['YEAH']) {
    // Query for your :YEAH selector with ease of mind.
}

Cheers.

share|improve this answer

Alternatively:

if( jQuery('#elem').get(0) ) {}
share|improve this answer

I prefer the

    if (jQuery("#anyElement").is("*")){...}

Which basically checks if this elements is a kind of "*" (any element). Just a cleaner syntax and the "is" makes more sense inside an "if"

share|improve this answer
sounds like a lot of effort, compared to just reading an existing property – Christophe Jan 15 at 22:03

Useful plug-in for jQuery I made for this type of thing:

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

USE

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

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

//  With just tag // prolly not best idea aS there will be other tags on 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

For me .exists doesn't work, so I use the index :

if ($("#elem").index() ! = -1) {}
share|improve this answer
3  
you have to create the exists() function – afarazit Jul 11 '12 at 13:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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