old-sites/c2015/lib/xml/xmlLib.js
2019-11-22 11:57:53 -06:00

15 lines
336 B
JavaScript

function getInternalXML(url){
var xhttp, xmlDoc;
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest();
}
else // code for IE5 and IE6
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",url,false);
xhttp.send();
xmlDoc=xhttp.responseXML;
return xmlDoc;
}