I'm trying to get only the div that have two classes
and not just one.
The problem that in have tried it with jQuery that give me all divs
that have one of the classes.
<div class='one'></div>
<div class='two'></div>
<div class='one two'>I just want to get this</div>
$('.one .two').html('ok');
this code return all three divs