Tema: soporte ajax
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/08/2007, 09:51
gvargas
 
Fecha de Ingreso: octubre-2006
Ubicación: México D.F
Mensajes: 210
Antigüedad: 18 años
Puntos: 0
Re: soporte ajax

Ah se me pasaba....

Prueba con esta función para crear tus objetos Ajax
Código PHP:
function getAjax(){
    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;

Para usar:
Código PHP:
ajax=getAjax();
ajax.open("GET",............ etcetc 
Saludos !