slice() is likely to give better performance:
$('p').slice(1).hide();
... where 1 is the second element in the results, and 0 is the first. This is faster because custom methods are used instead of the custom filter.
Alternatively, you can use :not() or .not() :
$('p:not(:first)').hide(); //or $('p').not(':first').hide();
source share