Cita:
Iniciado por David Depura el código colocando varios alert() para saber qué parte se está ejecutando y qué parte no.
puse el alert en
Código:
function objetoAjax(){
alert("adas");
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
como primera linea del codigo de la funcion del objeto ajax.
y no llega hasta ahí porq no me tira el alert.que puede ser? porq en ie si me lo tira