Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/04/2008, 10:45
Goomba
 
Fecha de Ingreso: abril-2003
Ubicación: Santiago
Mensajes: 212
Antigüedad: 21 años, 7 meses
Puntos: 0
Re: no funciona en Mozilla Firefox

yo uso ese y me funciona en ambos navgadores
Código PHP:
function nuevoAjax(){
    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;