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.

I want to select all the elements that have the two classes a and b.

<element class="a b">

So, only the elements that have both classes.

When I use $(".a, .b") it gives me the union, but I want the intersection.

share|improve this question
16  
I was actually looking for how to do a union, so thanks! – Westy92 Aug 9 '12 at 2:40
Also got my answer for union based on your question.Thanks. – Abide Masaraure Mar 21 at 12:46

5 Answers

up vote 640 down vote accepted
$('.a.b')

If you want an intersection, just write the selectors together without spaces in between. So for an element that has an ID of a with classes b and c, you would write:

$('#a.b.c')
share|improve this answer
2  
i was stuck on a problem for about 3 hours. and this was the reason why. YES! thank you! – Sasha Feb 8 '12 at 3:39
Never knew this! cool! – mshsayem Apr 18 '12 at 13:38
1  
A big THANK YOU Sasha from all of us to you! – chainwork Aug 2 '12 at 22:34
5  
@Flater: It was just for the sake of example. But it might be useful if the classes b and c are dynamically added, and you only want to select the element if it has those classes. – Sasha Chedygov Aug 7 '12 at 17:19
1  
@Shimmy: Yes. A space between two selectors means you're searching for descendants; i.e. .a .b searches for elements with class b that are descendants of an element with class a. So something like div a will only return a elements that are inside a div element. – Sasha Chedygov May 12 at 23:49
show 3 more comments

You can do this using the filter function:

$(".a").filter(".b")
share|improve this answer
4  
What is the difference between this answer and the accepted one? – Daniel Allen Langdon Aug 9 '11 at 14:32
18  
@Rice: This one will be a little bit slower, because it will build a list of objects with class "a" first, then remove all but those that have class "b", whereas mine does this in one step. But otherwise, no difference. – Sasha Chedygov Sep 8 '11 at 9:39
This worked for me in an instance where I was searching for a class defined as a variable, which didn't work with the syntax in the first example. eg: $('.foo').filter(variable). Thanks – pac Feb 9 '12 at 22:28
1  
@pac: $('.foo' + variable) should have done the trick, but I can see where this method would be clearer in that case. – Sasha Chedygov Feb 14 '12 at 10:19
@musicfreak I didn't know that. Thank you. – pac Feb 22 '12 at 17:31
show 1 more comment

for the case

<element class="a">
  <element class="b c">
  </element>
</element>

you would need to put a space in between .a and .b.c

$('.a .b.c')
share|improve this answer
Adding to your answer I would like to know how to access both b and c if the case is as below:<element class="a"><element class="b"></element><element class="c"></element> </element> ? Through $('.a .b.c') gives wrong result. – Ipsita Rout Apr 6 at 9:07

Just mention another case with element:

E.g. <div id="title1" class="A B C">

Just type: $("div#title1.A.B.C")

share|improve this answer
<div class="a">a
    <div class="b">b</div>
    <div class="c">c</div>
   <div class="d">d</div>
</div>

$('.a .b , .a .c').css('border', '2px solid yellow');
//selects b and c
share|improve this answer

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.