I have two elements on which multiple classes are applied something like this
<div class="one two"></div>
<div class="one three"></div>
Through jQuery how can I target the other class of the element if targeted by the common class (in this case 'one')?
$('.one').????