usa una función más completa y
crossbrowser para obtener el XMLHttpRequest:
Código Javascript
:
Ver originalfunction getajax(){
try {
xmlhttpobj = new ActiveXObject("Msxml2.XMLHTTP");
} catch (ex) {
try {
xmlhttpobj= new ActiveXObject("Microsoft.XMLHTTP");
} catch (ex2) {
xmlhttpobj= false;
}
}
if (!xmlhttpobj && typeof XMLHttpRequest!='undefined') {
xmlhttpobj = new XMLHttpRequest();
}
return xmlhttpobj;
}
recuerda usar
var para declarar variables.