
12/03/2010, 10:33
|
 | | | Fecha de Ingreso: marzo-2007
Mensajes: 149
Antigüedad: 18 años 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); |