Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/02/2006, 18:08
raly210
 
Fecha de Ingreso: enero-2006
Mensajes: 5
Antigüedad: 18 años, 3 meses
Puntos: 0
Les Dejo La Solucion

GRACIAS DESCUBRI EL PROBLEMA Y LES DEJO EL CODIGO COMPATIBLE CON TODOS LOS NAVEGADORES. EL PROBLEMA ERAN LAS VARIABLES DE TRY CATCH...
function nuevoAjax(){

var ajax=false;
try { ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
ajax = false;
}
}
if (!ajax && typeof XMLHttpRequest!='undefined') {
ajax = new XMLHttpRequest();
}
return ajax;
}