xmlHttpRequest keeping backward compatibility
var returnValue;
_temp = [function() {return new XMLHttpRequest()},
function() {return new ActiveXObject('Msxml2.XMLHTTP')},
function() {return new ActiveXObject('Microsoft.XMLHTTP')}]
for(var i = 0; i < _temp.length ; i++){
var lambda = _temp[i];
try {
returnValue = lambda();
break;
} catch (e) { }
}
return returnValue;
Written by Luca Simonetti
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#