jQuery not first selector found by attributeContains
I have a problem with sele开发者_StackOverflowcting "not first selector" using attributeContains
jQuery('div[id*="abc"]:not(:first)').hide();
Try to chain it like this:
jQuery('div[id*="abc"]').not(':first').hide();
精彩评论