Opened 12 years ago
Closed 12 years ago
#10869 closed bug (invalid)
Cross-Browser XML parsing support breaks for IE9
Reported by: | Owned by: | ||
---|---|---|---|
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()
Change History (2)
comment:1 Changed 12 years ago by
Component: | unfiled → ajax |
---|---|
Owner: | set to RogerDTaylor@… |
Priority: | undecided → low |
Status: | new → pending |
comment:2 Changed 12 years ago by
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.