Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/11/2007, 10:39
Avatar de Jesica
Jesica
 
Fecha de Ingreso: agosto-2007
Mensajes: 78
Antigüedad: 17 años, 5 meses
Puntos: 0
Re: Funciona en explorer pero no en firefox

Muchas gracias por la respuesta, esto es lo que uso para crear el objeto ajax:

function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}


que es lo que me falta??