I have a script like this:
var xml_http_request = new XMLHttpRequest();
xml_http_request.addEventListener('readystatechange', PageReady, false);
xml_http_request.overrideMimeType("text/xml");
xml_http_request.open('GET', "index.xml", true);
xml_http_request.send(null);
function PageReady()
{
if(this.readyState != 4)
return;
var Doc = this.responseXML;
alert(Doc.getElementById("page1"));
}
and index.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<page id="page1">
<layer id="layer1">
<hook to="page1" edge="top" distance="10px" />
<hook to="page1" edge="left" distance="10px" />
<hook to="page1" edge="right" distance="10px" />
<hook to="page1" edge="bottom" distance="10px" />
</layer>
</page>
The alert that I see contains the message: null
which is incorrect, because the document got element with id
page1
.
Looking in Google Chrome's Inspector, the Doc
has a single child with attribute id
set to page1
.
Why doen't it work?