I have some boxes
<div class='ICS_Picture'>
Text
</div>
<div class='ICS_Picture'>
Text
</div>
<div class='ICS_Picture'>
Text
</div>
<div class='ICS_Picture'>
Text
</div>
I want jquery to add a class to all items after the first n number of items..
I have some similar code that does it for tr's but cannot get the syntax right for the current item.
$('.ICS_Picture').each(function(){
$(this).addClass("hideme");
});
Thanks
Chris