Bug Tracker

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#11902 closed bug (fixed)

:not + :contains selectors

Reported by: gdoron12345@… 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 dmethvin

Resolution: fixed
Status: newclosed

Your test case from the SO thread: http://jsfiddle.net/XYDk2/

This seems to be correct with 1.8b2.

comment:2 Changed 11 years ago by dmethvin

Component: unfiledselector
Milestone: None1.8
Priority: undecidedlow
Note: See TracTickets for help on using tickets.