

function (){
return new XMLHttpRequest();
}
function(){
try{
return new XMLHttpRequest();
}catch(e){
try{
return new ActiveXObject('Msxml2.XMLHTTP.4.0');
}catch(e2){
try{
return new ActiveXObject('Msxml2.XMLHTTP');
}catch(e3){
return new ActiveXObject('Microsoft.XMLHTTP')
}
}
}
}
}
// Mozilla, Opera, Safari sowie Internet Explorer (ab v7 OHNE v8!!!!!)
xmlHttp = new XMLHttpRequest();
// MS Internet Explorer (ab v6 & IE8)
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
// MS Internet Explorer (ab v5)
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
Labels: ajax, error, fehler, html, httprequest, IE8, internet explorer, javascript, js, method not supported, Microsoft.XMLHTTP, Object doesn't support this property or method, problem, webpage, xajax, xmlhttprequest