06/03/2007, 10:06
|
| | Fecha de Ingreso: marzo-2007
Mensajes: 3
Antigüedad: 17 años, 9 meses Puntos: 0 | |
funcion generica ajax pq en la funcion generica de crear un objeto ajax si pongo trazas y las sigo si entro con firefox no me lo crea y con ie me crea como si fuera uno q no es explorer??
la funcion es:
function nuevoAjax()
{
/* Crea el objeto AJAX. Esta funcion es generica para cualquier utilidad de este tipo, por
lo que se puede copiar tal como esta aqui */
var xmlhttp=false;
try
{
// Creacion del objeto AJAX para navegadores no IE
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
// Creacion del objet AJAX para IE
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(E) { xmlhttp=false; }
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); }
return xmlhttp;
} |