Reputation:
So far I've this:
$(".actor ul li").not($(".actor ul li").slice(0,11)).hide();
I also would like to exclude last li from hide(). How would I do that? obvious answer would be to also show :last. But there should be an elegant way to do this :)
Upvotes: 0
Views: 33