Side navigation
#10665 closed bug (duplicate)
Opened November 04, 2011 12:25PM UTC
Closed November 04, 2011 12:59PM UTC
Last modified November 04, 2011 01:00PM UTC
[nodeName$="something"] does not work anymore
Reported by: | jan.mate@inf-it.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Because jQuery not supports namespaces and sometimes the user get XML with namespace defined, it is impossible to select element with unknown namespace but known element name. For example:
- if I know the namespace I can use $('ns\\\\:element') - the $('element') not works in all browsers
- in the jQuery 1.6.4 it was possible to use $('nodeName$=:element') to select and element with unknown namespace but in the 1.7 this not works
So the question is how to select elements in 1.7 with unknown namespace?