Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/03/2010, 10:33
Avatar de alaintm
alaintm
 
Fecha de Ingreso: marzo-2007
Mensajes: 149
Antigüedad: 17 años, 8 meses
Puntos: 1
Respuesta: Acceso a Xml y error de IExplorer

Disculpa el error que no agregue el codigo de la función que carga el xml:

function loadXMLDoc(a){

if(window.XMLHttpRequest){

xhttp=new XMLHttpRequest()

}else{

xhttp=new ActiveXObject("Microsoft.XMLHTTP");

}

xhttp.open("GET",a,false);

xhttp.send('');

return xhttp.responseXML

}

y el error lo da en esta línea:

xhttp.open("GET",a,false);