Vyacheslav Koldovskyy programmingmentor.com t.me/programmingmentor
Text
var xmlHttp;
// use the ActiveX control for IE5.x and IE6
try {
xmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
} catch (othermicrosoft){
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (native) {
// If IE7, Mozilla, Safari, etc: Use native object
xmlHttp = new XMLHttpRequest();
}
}
jQuery usage trend 2018-2019
Vyacheslav Koldovskyy programmingmentor.com t.me/programmingmentor