$('p').hide(); $('p:first(or :eq(0)').show()
$('p:eq(>0)')
slice()
$('p').slice(1).hide();
:not()
.not()
$('p:not(:first)').hide(); //or $('p').not(':first').hide();