add initial findings

This commit is contained in:
garrettmills
2019-11-22 11:57:53 -06:00
commit b550b5d1db
150 changed files with 17496 additions and 0 deletions

15
c2015/lib/xml/xmlLib.js Normal file
View File

@@ -0,0 +1,15 @@
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;
}