#808 closed bug (fixed)
jjQuery(a, c) fails to navigate over rdocumentElement from parsed xml
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | major | Milestone: | 1.1 |
Component: | core | Version: | 1.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
A have cross domain scripts in my app, so a could not get access to res.responseXML.document element in Firefiox. I have to parse res.responseText as string to xml document. So, I have a valid xml dom tree. After that I'm trying to pass it to jQuery(a, c) function.
Begining from 1.1 release former fails to process my xml document.
The following lines fail or produce empty result:
$("name-of-element", doc); $("name-of-element", doc); $(">name-of-element", doc);
The only solution for me to use $(" name-of-element", doc) or $("name-of-element", doc)
Note: See
TracTickets for help on using
tickets.
Fixed in SVN rev 1142.