#13420 closed bug (fixed)
jQuery 1.9.1 fails to filter SVG parent nodes by class name when using .parent() and .closest()
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.10/2.0 |
Component: | selector | Version: | git |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When using the parent and closest methods to walk up an SVG DOM tree in jQuery 1.9.1, filtering by selector does not work.
It looks *possible* Sizzle changed their XML element detection...
Change History (6)
comment:1 Changed 10 years ago by
Component: | unfiled → selector |
---|---|
Priority: | undecided → low |
Resolution: | → duplicate |
Status: | new → closed |
comment:2 Changed 10 years ago by
Thank you, I do understand this.
It is strange that maintaining a predictable API is taking a back seat here.
I went through the duplicates, this issue is re-occurring and this XML feature seems to appear and disappear in various jQuery versions. It works one day and not the next with "wont fix" as the resolution. Why not just fix it?
My bad for the duped report though. Appreciate you guys.
comment:3 Changed 10 years ago by
Milestone: | None → 1.9.2 |
---|---|
Resolution: | duplicate |
Status: | closed → reopened |
I understand and appreciate that viewpoint, but SVG support is peripheral to our primary purpose with jQuery core and thus not guaranteed, though we do incorporate fixes on a case-by-case basis when their size/performance impact is sufficiently small.
The jQuery SVG plugin attempts to provide better support, and you'll be happy to note that your particular application is in fact functional with the latest Sizzle update via jquery-git: http://jsfiddle.net/DruHG/4/
comment:4 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Duplicate of #12626.
SVG is not HTML; use
[class~="name"]
: http://jsfiddle.net/DruHG/3/