views:

118

answers:

3

jQuery Class selector works well if you have a single class assigned to an element. What if I assign two classes to an element(Ex: <div class="one two">), how can I find that element if I know these two classes?

+3  A: 

Exact dupe: Jquery multiple class selector

JMP
A: 

$("div.one.two")

Matthew