Skip to content

Instantly share code, notes, and snippets.

@zmiftah
Last active December 23, 2015 17:19
Show Gist options
  • Save zmiftah/6668020 to your computer and use it in GitHub Desktop.
Save zmiftah/6668020 to your computer and use it in GitHub Desktop.
Js : Create XHR Object
function getHTTPObject() {
if (typeof XMLHttpRequest != 'undefined') {
return new XMLHttpRequest();
}
try {
return new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
return new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment