All Downloads are FREE. Search and download functionalities are using the official Maven repository.

assets.lib.jquery.src.ajax.parseXML.js Maven / Gradle / Ivy

The newest version!
define([
	"../core"
], function( jQuery ) {

// Cross-browser xml parsing
jQuery.parseXML = function( data ) {
	var xml, tmp;
	if ( !data || typeof data !== "string" ) {
		return null;
	}

	// Support: IE9
	try {
		tmp = new DOMParser();
		xml = tmp.parseFromString( data, "text/xml" );
	} catch ( e ) {
		xml = undefined;
	}

	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
		jQuery.error( "Invalid XML: " + data );
	}
	return xml;
};

return jQuery.parseXML;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy