09/11/2010, 18:19
|
| | Fecha de Ingreso: mayo-2008
Mensajes: 10
Antigüedad: 16 años, 6 meses Puntos: 0 | |
Actualizar funcion getXMLHTTPRequest() Tengo esta función definida:
Ajax.js
=====
function getXMLHTTPRequest() {
var req;
try {
req = new XMLHttpRequest();
} catch(err1) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch (err2) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch (err3) {
req = false;
}
}
}
return req;
}
Qué debo agregarle para actualizarlo?? pues no funciona con Firefox 3.6
Gracias. |