Hello
I want hide every LI from a UL other than the first, but the result is that it hides all except the very first LI of all UL's. (I want "show" the first LI of every UL).
How can i do that???
<ul>
<li>first</li>
<li>second</li>
</ul>
<ul>
<li>first</li>
<li>second</li>
</ul>
When i do this only identified the first item of all UL
$('.smallYears ul li:not(:first)').hide();
Thank you very much