vote up 4 vote down star
1

Hi guys,

I want to select all the elements that have these two classes 'a' and 'b'. So, only the elements that have both classes. When I use $(".a, .b") it gives me union, but I want intersection.

flag

80% accept rate

3 Answers

vote up 8 vote down check

This should work:

$('.a.b')

If you want an intersection, just write the selectors together without spaces in between. So for something that has ID 'a' and classes 'b' and 'c', you'd do:

$('#a.b.c')
link|flag
vote up 0 vote down

thank you! efficient advice!

link|flag
vote up 0 vote down

You can do this using the filter function:

$(".a").filter(".b")
link|flag

Your Answer

Get an OpenID
or

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