How can I select an element with multiple classes?
Advertisement
I want to select all the elements that have the two classes a and b.
So, only the elements that have both classes.
When I use $(".a, .b") it gives me the union, but I want the intersection.
jQuery
jquery-selector
- asked 10 years ago
- B Butts
2Answer
If you want an intersection, just write the selectors together without spaces in between.
$('.a.b')
So for an element that has an ID of a with classes b and c, you would write:
$('#a.b.c')
- answered 10 years ago
- Gul Hafiz


Your Answer