![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
12/03/2010, 10:33
|
![Avatar de alaintm](http://static.forosdelweb.com/customavatars/avatar174756_2.gif) | | | Fecha de Ingreso: marzo-2007
Mensajes: 149
Antigüedad: 17 años, 10 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); |