Ticket #10869 (closed bug: invalid)
Cross-Browser XML parsing support breaks for IE9
| Reported by: | RogerDTaylor@… | Owned by: | RogerDTaylor@… |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | ajax | Version: | 1.7.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
comment:1 Changed 18 months ago by timmywil
- Owner set to RogerDTaylor@…
- Priority changed from undecided to low
- Status changed from new to pending
- Component changed from unfiled to ajax
comment:2 Changed 18 months ago by trac-o-bot
- Status changed from pending to closed
- Resolution set to invalid
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!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

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.