Skip to content

Instantly share code, notes, and snippets.

@OMGVee
Created October 4, 2013 11:30
Show Gist options
  • Save OMGVee/6824550 to your computer and use it in GitHub Desktop.
Save OMGVee/6824550 to your computer and use it in GitHub Desktop.
function loadXMLDoc(meth,url)
{
var xmlhttp;
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("output").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open(meth, url ,true);
xmlhttp.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment