Gracias, David.
Entonces podría dejarlo así:
Código JavaScript
:
Ver originalfunction nuevoAjax(){
var xmlhttp;
try{
xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
}
catch(e){
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(er){
try{
xmlhttp = new XMLHttpRequest();
}
catch(err){
xmlhttp = false;
}
}
}
return xmlhttp;
}