-
-
Notifications
You must be signed in to change notification settings - Fork 897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should support CSS selector: parent:has(>child) #688
Comments
Better jQuery selector support is on the roadmap for 2.0. See https://github.com/tenderlove/nokogiri/blob/master/ROADMAP.md for more details. I'll note this issue in the roadmap. |
Sweet! |
For confused readers like myself: there's also a bug in |
jonathanhefner
added a commit
to jonathanhefner/nokogiri
that referenced
this issue
Apr 18, 2019
Adds support for CSS queries like "a:has(> b)", "a:has(~ b)", and "a:has(+ b)". Closes sparklemotion#688.
flavorjones
added a commit
to jonathanhefner/nokogiri
that referenced
this issue
Apr 22, 2019
flavorjones
pushed a commit
to jonathanhefner/nokogiri
that referenced
this issue
Apr 22, 2019
Adds support for CSS queries like "a:has(> b)", "a:has(~ b)", and "a:has(+ b)". Closes sparklemotion#688.
flavorjones
added a commit
to jonathanhefner/nokogiri
that referenced
this issue
Apr 22, 2019
This was referenced Mar 5, 2021
Closed
This was referenced Mar 15, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nokogiri supports the CSS selector
parent:has(descendant)
but does not supportparent:has(>child)
. jQuery supports both, so it would be great if nokogiri would also supportparent:has(>child)
.The text was updated successfully, but these errors were encountered: