Hello there,
i have problem with selecting "not first selector" with using attributeContains
jQuery('div[id*="abc"]:not(:first)').hide();
Thanks a lot for help
Hello there,
i have problem with selecting "not first selector" with using attributeContains
jQuery('div[id*="abc"]:not(:first)').hide();
Thanks a lot for help
Try to chain it like this:
jQuery('div[id*="abc"]').not(':first').hide();