Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/11/2009, 07:27
Avatar de ZiTAL
ZiTAL
 
Fecha de Ingreso: marzo-2004
Ubicación: Bermio (Bizkaia)
Mensajes: 1.545
Antigüedad: 20 años, 8 meses
Puntos: 62
Respuesta: Dos peticiones en un mismo sitio

puede ser que llames a la funcion 'ajax' sin el new delante por ejemplo:

MAL
Código javascript:
Ver original
  1. function xmlhttp = function()
  2.     {
  3.         var a;try{a = new XMLHttpRequest();}
  4.         catch(e){try{a = new ActiveXObject('Msxml2.XMLHTTP');}
  5.         catch(e){try{a = new ActiveXObject('Microsoft.XMLHTTP');}
  6.         catch(e){alert("Your browser doesn't support ajax");return false;}
  7.         }}return a;
  8.     }
  9.  
  10. var a = xmlhttp();

BIEN
Código javascript:
Ver original
  1. function xmlhttp = function()
  2.     {
  3.         var a;try{a = new XMLHttpRequest();}
  4.         catch(e){try{a = new ActiveXObject('Msxml2.XMLHTTP');}
  5.         catch(e){try{a = new ActiveXObject('Microsoft.XMLHTTP');}
  6.         catch(e){alert("Your browser doesn't support ajax");return false;}
  7.         }}return a;
  8.     }
  9.  
  10. var a = new xmlhttp();
__________________
http://zital.no-ip.org
____________________

Euskerie ahuen eta bijotzan