vote up 13 vote down star
5

So I know that you can do:

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

But is there a more elegant method?

flag

6 Answers

vote up 25 vote down check

Yes!

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

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

There you go!

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

link|flag
vote up 12 vote down

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|flag
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 at 20:00
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 at 0:31
1  
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 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 at 20:05
Even your second example isn't chainable... – Josh Stodola Nov 6 at 16:50
vote up 5 vote down

You can use:

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

A little more elegant, perhaps.

link|flag
vote up 1 vote down

In JavaScript, everythig 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|flag
vote up 0 vote down
if ( $('#myDiv').size() > 0 ) { //do something }

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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