Skip to content

Instantly share code, notes, and snippets.

@xincici
Created February 26, 2015 09:24
Show Gist options
  • Save xincici/413e7603a24674ba38da to your computer and use it in GitHub Desktop.
Save xincici/413e7603a24674ba38da to your computer and use it in GitHub Desktop.
get XMLHttpRequst Object
function getXHR(){
var xmlHttp = null;
try {
// Firefox, Opera 8.0+, Safari
xmlHttp = new XMLHttpRequest();
} catch (e) {
// Internet Explorer
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment