Skip to content

Instantly share code, notes, and snippets.

@leandroh
Created March 24, 2016 19:47
Show Gist options
  • Save leandroh/56310a43bd9bf55ee3c1 to your computer and use it in GitHub Desktop.
Save leandroh/56310a43bd9bf55ee3c1 to your computer and use it in GitHub Desktop.
XHR is a mess!
if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
} else if (window.ActiveXObject) {
try {
request = new ActiveXObject('Msxml2.XMLHTTP');
}
catch (e) {
try {
request = new ActiveXObject('Microsoft.XMLHTTP');
}
catch (e) {}
}
}
request.open('GET', 'https://api.github.com/users/leandroh', true);
request.send(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment