I want to hide all div's except the first of a certain id. I tried to write my own jquery but it seems to not be working.
$("div.hero-featureSwap:not(:first)").css({display:none});
would this hide all the div tags that have an ID of "hero-featureSwap" except the first one? That is my end result