01/02/2006, 18:08
|
| | Fecha de Ingreso: enero-2006
Mensajes: 5
Antigüedad: 18 años, 9 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;
} |