Skip to content
Permalink
Browse files
jQuery.parseXML extracted from ajax & added to core, needs unit testing.
  • Loading branch information
unknown authored and jaubourg committed Dec 31, 2010
1 parent 5bfbe7e commit 524bf39
Showing 1 changed file with 22 additions and 0 deletions.
@@ -546,6 +546,28 @@ jQuery.extend({
jQuery.error( "Invalid JSON: " + data );
}
},

// Cross-browser xml parsing
// (xml & tmp used internally)
parseXML: function( data , xml , tmp ) {

if ( window.DOMParser ) { // Standard
tmp = new DOMParser();
xml = tmp.parseFromString( data , "text/xml" );
} else { // IE
xml = new ActiveXObject( "Microsoft.XMLDOM" );
xml.async = "false";
xml.loadXML( data );
}

tmp = xml.documentElement;

if ( ! tmp || ! tmp.nodeName || tmp.nodeName === "parsererror" ) {
jQuery.error( "Invalid XML: " + data );
}

return xml;
},

noop: function() {},

0 comments on commit 524bf39

Please sign in to comment.