-
-
Save jed/993585 to your computer and use it in GitHub Desktop.
get a supported XHR instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function( | |
a // cursor placeholder | |
){ | |
for( // for all a | |
a = 3; // from 3 | |
a--; // to 0, | |
) try { // try | |
return new( // returning a new | |
this.XMLHttpRequest // XMLHttpRequest (w3c) | |
|| // or | |
ActiveXObject // ActiveXObject (MS) | |
)([ // reflecting | |
"Msxml2", // the | |
"Msxml3", // various | |
"Microsoft"][a] + // MS flavors | |
".XMLHTTP" // and appropriate suffix, | |
) | |
} | |
catch(e){} // and ignore when it fails. | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(a){for(a=3;a--;)try{return new(this.XMLHttpRequest||ActiveXObject)(["Msxml2","Msxml3","Microsoft"][a]+".XMLHTTP")}catch(e){}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |
0. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "getXHR", | |
"description": "get a supported XHR instance", | |
"keywords": [ | |
"ajax", | |
"XHR", | |
"cross-browser", | |
"XmlHttpRequest" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I took the liberty to extend the code just a bit more (even if it isn't 140bytes anymore).