Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/12/2005, 21:43
Avatar de richardinj
richardinj
 
Fecha de Ingreso: enero-2005
Ubicación: Ciber Espacio
Mensajes: 2.180
Antigüedad: 19 años, 3 meses
Puntos: 11
Exclamación AJAX No Funciona Con El FIREFOX Que Recomienda GOOGLE,,,

En anuncios google recomeindan instalar Firefox... bueno yo lo inslale y mi web que tiene ajax no funciona para nada.. me sale error.. no reconce esto:

valor=document.getElementById("nombre").value;

creo que es por eso.. pero aqui les paso mi codigo para crear el objeto.

Cita:
function AJAX(){
var ajaxs = ["Msxml2.XMLHTTP","Msxml2.XMLHTTP.4.0","Msxml2.XMLH TTP.5.0","Msxml2.XMLHTTP.3.0","Microsoft.XMLHTTP"];
var ajax = false;
for(var i=0 ; !ajax && i<ajaxs.length ; i++){
try{ ajax = new ActiveXObject(ajaxs[i]); }
catch(e) { ajax = false; }
}
if(!ajax && typeof XMLHttpRequest!='undefined') {
ajax = new XMLHttpRequest();
}
return ajax;
}
pero en el firefox que tenia antes sin me funcionaba normal....