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.
|
If you want an intersection, just write the selectors together without spaces in between. So for an element that has an ID of
|
|||||||||||||||||||
|
|
You can do this using the filter function:
|
|||||||||||||||||
|
|
for the case
you would need to put a space in between
|
|||
|
|
Just mention another case with element: E.g. Just type: |
|||
|
|
|
|||
|
|