Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/08/2011, 04:49
Avatar de yournightmare86
yournightmare86
 
Fecha de Ingreso: abril-2006
Ubicación: Madrid
Mensajes: 875
Antigüedad: 18 años
Puntos: 9
Respuesta: Funciona en IE6 pero no en Firefox

Hola,

prueba con esta función en lugar de la que tienes ahora [ function crearXHR() ]:

Código:
function crearXMLHttpRequest() 
{
  var xmlHttp=null;
  if (window.ActiveXObject) 
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  else 
    if (window.XMLHttpRequest) 
      xmlHttp = new XMLHttpRequest();
  return xmlHttp;
}
Saludos.