Is it possible in jQuery or CSS (since I think they use the same selector logic) to tell select elements that have multiple classes. For instance:
<div class='class1'></div> <div class='class2'></div> <div class='class1 class2'></div>
I can say that I need elements that apply to both class 1 and class 2 (so in this case you only need to get the third div)?
source share