|    
			
				24/05/2007, 01:46
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: marzo-2004 Ubicación: Bermio (Bizkaia) 
						Mensajes: 1.545
					 Antigüedad: 21 años, 7 meses Puntos: 62 |  | 
  |  Re: Funciona en Firefox, pero en IE no..  
  
Código:
  ...
function getHTTPObject()
  {
  var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    return xmlHttp;
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      return xmlHttp;
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        return xmlHttp;
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
  }
prueba con eso, suerte      |