Ver Mensaje Individual
  #10 (permalink)  
Antiguo 20/09/2006, 07:07
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 11 meses
Puntos: 89
Ajax si funciona con firefox...

try{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); <- En caso de que no sea el IE
} catch(e) {
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); <- En caso de que sea el IE...
} catch(e) {
xmlhttp = false;
}
}