jQuery's is() Method Checks For Any Matching Elements

Posted October 1, 2009 at 2:14 PM by Ben Nadel

Tags: Javascript / DHTML

This is a really tiny post, but just something that I wanted to point out. The is() method in jQuery will return true if any of the elements in the current collection match any of the elements in the is-based collection (as defined by the given selector). Normally, if you're working with just a single element, there's no problem; but, if your current jQuery collection contains multiple elements, you might get an unintended result.

Take a look at this quick example:

  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <title>jQuery is() Method</title>
  • <script type="text/javascript" src="jquery-1.3.2.js"></script>
  • <script type="text/javascript">
  •  
  • $(function(){
  •  
  • // Get all the paragraphs.
  • var p = $( "p" );
  •  
  • // Check to see if the Paragraph is cool.
  • if (p.is( ".cool" )){
  •  
  • // Highlight with gold.
  • p.css( "background-color", "gold" );
  •  
  • }
  •  
  • });
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <h1>
  • jQuery is() Method
  • </h1>
  •  
  • <p class="cool">
  • I am a cool paragraph.
  • </p>
  •  
  • <p class="boring">
  • I am a boring paragraph.
  • </p>
  •  
  • <p class="cool">
  • I am a cool paragraph.
  • </p>
  •  
  • </body>
  • </html>

Here, we are grabbing all of the paragraphs on the page, then we are checking to see if the collection is( ".cool" ). If so, then we are going to give it a gold background. When we run this code, this is what we end up with:

 
 
 
 
 
 
jQuery is() Method Returns true If Any Elements Match The Given Set. 
 
 
 

As you can see, all paragraphs, even the one with the class "boring" were given the gold background. This is because at least one element in the original collection matched at least one element in the is-based collection. Like I said, if you are working with a single node, then it's never a problem; but, if your original collection has several nodes, your is() method calls might give you a false positive.

That said, if you haven't used jQuery's is() method, it is totally awesome! I love it for checking classes, visibility, and tag types. Perhaps the coolest use-cases for me is using it in conjunction with the jQuery pseudo-selectors:

  • if (elements.is( ":visible" )){ ... }

I love that one - I use it all the time in dynamic layouts.



Reader Comments

Oct 1, 2009 at 3:19 PM // reply »
5 Comments

Ben, great post as usual. The is() method is also great for performance tricks.

Like maybe for a grid use case:

$("#somegrid").click(function(e){
if( $(e.target).is(".datarow") ){
// do something with this table row
}
});

So now instead of registering 50 or so table rows into the browser event model, you are only registering 1 element, and letting event delegation figure out the click.


Oct 1, 2009 at 3:21 PM // reply »
11,314 Comments

@Garrett,

Word up. I believe that is half the magic of how the live() event binding works.


Oct 1, 2009 at 7:00 PM // reply »
76 Comments

For that example wouldnt you do:

var p = $('p');

p.filter('.cool').css( 'background-color', 'gold' );

Because by doing:

if (p.is('.cool')) {
p.css( 'background-color', 'gold' );
}

You only check to see if there is some '.cool' p's available and so when you do this line:
p.css( 'background-color', 'gold' );

You are effectively applying the background to the 'p' set, rather than a filtered set.

That would be correct I suppose if you wanted to apply the gold background if there are any p's in the set with a class of cool.


Oct 1, 2009 at 7:16 PM // reply »
11,314 Comments

@shuns,

That is correct. The right/wrongness of the post wasn't so much what I was getting at. After all, I could simply do $( "p.cool" ) and have the exact set I was looking for; my real intention was only to point out that is() works with *any* overlap of the two sets and cannot speak for the entire collection, which may or may not lead to unintended results (depending on what you're doing).


Oct 2, 2009 at 2:46 PM // reply »
4 Comments

I just started using .is(':hidden') and .is(':visible') the other day.

Great explanation of what it actually does. Very helpful.

Keep it up.


Oct 2, 2009 at 5:04 PM // reply »
11,314 Comments

@Mark,

Yeah, those are great. jQuery's pseudo selectors are the best.


Oct 4, 2009 at 8:49 AM // reply »
2 Comments

My condution is "Only submit if at least one checkbox was checked."

In this state, i can use is() method.

$("#myform").submit(function(){
var chckbox = $('input[type="checkbox"]')
if(chckbox.is(":checked")){
return true;
}
else {
return false;
}
});

Like you said, This is a really tiny post, but useful...


Oct 4, 2009 at 8:08 PM // reply »
1 Comments

It was a very nice idea! Just wanna say thank you for the information you have shared. Just continue writing this kind of post. I will be your loyal reader. Thanks again.


Dec 9, 2009 at 5:17 AM // reply »
3 Comments

Great post. Just now saw the .is method on 24ways.org and didn't know it. Tried finding it in the Jquery api reference but it's nowhere to be found. This post really helped me out. Thanx.

Should anyone find the doc page on the jquery site please post it here.


Dec 9, 2009 at 5:20 AM // reply »
3 Comments

LOL just found it:

docs.jquery.com/Traversing

Hope somebody finds this helpfull


Mar 5, 2010 at 12:54 PM // reply »
1 Comments

Hi Ben... i always read your blog, and specially this post has solved a problem i had that was gettin me nuts!

Thanks a lot and keep the good work.

Greets from Chile, South America.

Rod.


Mar 8, 2010 at 7:07 PM // reply »
11,314 Comments

@Rodrigo, @Ryan, @Huile, @Ed,

Glad you guys enjoyed the post. $().is() is such a hugely useful method!


Nov 20, 2010 at 9:39 PM // reply »
1 Comments

thank you


Nov 22, 2010 at 3:30 AM // reply »
3 Comments

Been away for a while Ben :)

Keep a lookout for the new 24 ways 2010 edition on 24ways.org


Dec 24, 2011 at 3:49 PM // reply »
1 Comments

well, this isn't very helpful because you never mention the solution to working with more than one element, you just say that .is() isn't good for multiple elements, but you don't explain what would get us the result with multiple elements.



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Jun 20, 2013 at 3:15 AM
A Billion Wicked Thoughts By Ogi Ogas And Sai Gaddam
nice post i love it thanks 4 u :) ... read »
seb
Jun 20, 2013 at 2:32 AM
Working With Inherited Collections In AngularJS
@mike, @ben, The best article about scope and prototypal prototypical inheritance in angularjs is http://stackoverflow.com/questions/14049480/what-are-the-nuances-of-scope-prototypal-prototypical- ... read »
Jun 20, 2013 at 2:17 AM
ColdFusion NumberFormat() Exploration
Nice read thanks Ben, Is there a way to mask a negative number? Long story short in the finance sector when you go 'short' on a stock you want the price to fall this is a good thing because you are ... read »
Jun 20, 2013 at 1:09 AM
The Beauty Of The jQuery Each() Method
my html code : <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="nss.js"> ... read »
Jun 19, 2013 at 11:31 PM
Directive Link, $observe, And $watch Functions Execute Inside An AngularJS Context
@Ben, bunch to learn indeed, but thats fun part : ) ... read »
Jun 19, 2013 at 10:41 PM
Referencing ColdFusion Query Columns In A Loop Using Both Array And Dot Notation
Burdock-roots Are you going fat day by day? You need to be good for your family and make some money too. So we bring for you a best product that helps you to be more energetic every day. You will b ... read »
Jun 19, 2013 at 9:52 PM
Working With Inherited Collections In AngularJS
I recognize the applicability of your solution, and how easy it makes to share data across multiple views or even "submodules" of rather simple application. But it seems to me that it creat ... read »
Jun 19, 2013 at 9:38 PM
Directive Link, $observe, And $watch Functions Execute Inside An AngularJS Context
@Alesei, Glad you like it. Even after working with AngularJS for months, I still get a bunch of unexpected, "$digest is already in progress". So hard to debug sometimes! ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools