Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/06/2006, 20:46
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 10 meses
Puntos: 53
definitivamente estas instanciando mal tu objeto, mira, aqui te pongo como lohago yo,y me funciona sobre cualquier explorador:

Código:
/**
    * 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");
       }
   }