Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/01/2007, 14:31
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 20 años, 5 meses
Puntos: 53
Re: no me trae el valor del option con internet explorer

cmo estas inicialisando tu objeto XMLHttpRequestObject?? quiza solo lo estas instanciando para familia mozilla, mira, una buena forma de inicializarlo para que funcione en ambos es asi:

Código PHP:
 /**
    * Esta funcion instancia  el XMLHttpRequest
    * para la familia Mozilla :) o IE :S
    */
   
function initRequest() {
           
// code for Mozilla, etc.
       
if (window.XMLHttpRequest) {
           return new 
XMLHttpRequest();
       } else if (
window.ActiveXObject) {
               
// code for IE
           
isIE true;
           return new 
ActiveXObject("Microsoft.XMLHTTP");
       }
   } 
have funnnnnnnn