Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/09/2009, 00:32
sergi_climent
 
Fecha de Ingreso: enero-2005
Ubicación: Barcelona
Mensajes: 1.473
Antigüedad: 20 años
Puntos: 10
Respuesta: error en declaracion de variable

Podría ser esto, en cuanto crea en Objeto XMLHTTP, en el 8 no hace falta ActiveXObject no (http://scriptinside.blogspot.com/200...-objeto.html)?


Código Ajax:
Ver original
  1. //Crea el objeto XMLHTTP
  2.     if (typeof XMLHttpRequest != 'undefined')   //Mozilla & OPERA
  3.         this.objAjax = new XMLHttpRequest();
  4.     else if (typeof ActiveXObject != 'undefined') //IE
  5.         this.objAjax = (Number(navigator.appVersion.substr(0,3)) >= 5) ? new ActiveXObject('Msxml2.XMLHTTP') : new ActiveXObject('Microsoft.XMLHTTP');
  6.     if (this.objAjax == null)
  7.         alert(this.noajax);
  8.     else if (this.idmain && window.location.hash != '' && window.location.hash != '#')
  9.         this.Link(window.location.href, this.idmain);
__________________
"Cada hombre es el hijo de su propio trabajo"
Miguel de Cervantes Saavedra
"La experiencia es algo que no consigues hasta justo depués de necesitarla"
Laurence Olivier

Última edición por sergi_climent; 23/09/2009 a las 00:51