I want to exclude first and second element from jquery selector. I tried this:
$(\'p:not(:nth-child(1),:nth-child(2))\')
But this only excludes
$('p').not(":nth-child(1)").not(":nth-child(2)")
-- SEE DEMO --