#11902 closed bug (fixed)
:not + :contains selectors
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.8 |
Component: | selector | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I'm trying to use this code:
$('div.b:not(:has(p:contains(not me)))').css('color', 'red'); And it doesn't work, while if I just remove the :not it does work: $('div.b:has(p:contains(not me))').css('color', 'blue');
More details and demo here: http://stackoverflow.com/q/11013609/601179
I saw there's a ticket about two pseudo selectors, but those does work for me in 1.7.2, so it must be something else.
Change History (2)
comment:1 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Component: | unfiled → selector |
---|---|
Milestone: | None → 1.8 |
Priority: | undecided → low |
Note: See
TracTickets for help on using
tickets.
Your test case from the SO thread: http://jsfiddle.net/XYDk2/
This seems to be correct with 1.8b2.