Side navigation
#10869 closed bug (invalid)
Opened November 23, 2011 09:00AM UTC
Closed December 08, 2011 08:16AM UTC
Cross-Browser XML parsing support breaks for IE9
Reported by: | RogerDTaylor@Gmail.com | Owned by: | RogerDTaylor@Gmail.com |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | ajax | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Problem found in version 1.7.1
When you call $.parseXML(<xmlstring>) passing a valid (well formed ) XML string the string is parsed but examination of the DOM shows an "unspecified error" has been raised.
The problem occurs in the first few lines of the parseXML method:-
parseXML: function(data){
var xml, tmp
try{
if (window.DOMParser) { // Standard
As a temp workaround on our system we have altered the if (...)
statement to perform a browser check instead of the DOMParser support check
if ($.browser.msie)
This forces it to use the Microsoft.XMLDOM and not the DOMParser()
Attachments (0)
Change History (2)
Changed November 23, 2011 02:59PM UTC by comment:1
component: | unfiled → ajax |
---|---|
owner: | → RogerDTaylor@Gmail.com |
priority: | undecided → low |
status: | new → pending |
Changed December 08, 2011 08:16AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case to help us assess this ticket.
Additionally, be sure to test against the jQuery Git version to ensure the issue still exists.