Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/06/2009, 07:59
manoloOZ
 
Fecha de Ingreso: octubre-2008
Mensajes: 151
Antigüedad: 16 años, 1 mes
Puntos: 1
Respuesta: Problema con fire fox

Cita:
Iniciado por David Ver Mensaje
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