<html>
<head>
<script src="/demo/loadxmldoc.js">
</script>
</head>
<body>
<script>
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
{
//Display only element nodes
if (x.item(i).nodeType==1)
{
document.write(x.item(i).nodeName);
document.write("<br>");
}
}
</script>
</body>
</html>