views:

19

answers:

1

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

+1  A: 

Try to chain it like this:

jQuery('div[id*="abc"]').not(':first').hide();
Artem Barger
Thank you, but you have one ")" more, so correct is:jQuery('div[id*="abc"]').not(':first').hide();
Thank for noticing, fixed.
Artem Barger