Ver Mensaje Individual
  #7 (permalink)  
Antiguo 14/10/2009, 09:38
JoNhNaTaN
 
Fecha de Ingreso: febrero-2008
Mensajes: 54
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: Como cargo pestañas con Ajax??

yo tuve problemas con el iexplorer, me dijeron qponga esto dentro de la funcion:

Código ajax:
Ver original
  1. var httpReq;
  2.  
  3.                 if (window.XMLHttpRequest)//Si es Mozilla, Opera, etc...
  4.                 {
  5.                     httpReq = new XMLHttpRequest();
  6.                 }
  7.                 else //Internet Explorer lo expone como control Active X
  8.                 {
  9.                     httpReq = new ActiveXObject("Microsoft.XMLHTTP");
  10.                 }