#5700 closed bug (duplicate)
.class:not(:first) does not work as expected in IE8
Reported by: | matiasnu | Owned by: | john |
---|---|---|---|
Priority: | low | Milestone: | 1.4 |
Component: | selector | Version: | 1.3.2 |
Keywords: | css selectors | Cc: | |
Blocked by: | Blocking: |
Description
$(".elem:not(:first)") will select all divs with class .elem in IE8, but Chrome and Firefox 3.5 will select all except the first div.
$("div.elem:not(:first)") will select all except the first div in IE8, Chrome and Firefox.
Attached testcase.
Attachments (1)
Change History (5)
Changed 13 years ago by
Attachment: | ie8bug.html added |
---|
comment:1 Changed 13 years ago by
I get the same behavior in IE8 when using jQuery 1.4rc1, but I guess this is more of a sizzle bug?
comment:2 Changed 12 years ago by
Keywords: | css selectors added |
---|---|
need: | Review → Patch |
Priority: | major → low |
I've tried your originally submitted test case and it would indeed appear that the selector $(".elem:not(:first)") is not working as expected in IE8.
Live test case here: http://jsfiddle.net/addyosmani/ZndXa/
Flagging for a further review and patch.
comment:3 Changed 12 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Testcase