<html>
<head>
<script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
{
if (x[i].nodeType==1)
{
document.write(x[i].nodeName);
document.write("<br />");
y=x[i].childNodes;
for (j=0;j<y.length;j++)
{
if (y[j].nodeType==1)
{
document.write(y[j].nodeName);
document.write(": ");
document.write(y[j].childNodes[0].nodeValue);
document.write("<br />");
}
}
document.write("<br />");
}
}
</script>
</body>
</html>