I am doing the following right now, which works fine:
$('#picker a').removeClass('selected');
Where:
<div id="picker">
<a href="" class="selected">Stuff</a>
<a href="" class="selected">Stuff</a>
<a href="" class="">Stuff</a>
<a href="" class="selected">Stuff</a>
</div>
How can I update jQuery to say remove the class selected from all BUTs of the first row. Ignore the first row in the picker.
thank
source
share