<html>
<head>
<script src="/demo/loadxmldoc.js">
</script>
</head>
<body>
<script>
xmlDoc=loadXMLDoc("books_ns.xml");
x=xmlDoc.getElementsByTagName('book');
for(i=0;i<x.length;i++)
{
document.write("Prefix: " + x.item(i).attributes[0].prefix);
document.write("<br>");
document.write("Local name: " + x.item(i).attributes[0].localName);
document.write("<br>");
document.write("Namespace URI: " + x.item(i).attributes[0].namespaceURI);
document.write("<br>");
document.write("Base URI: " + x.item(i).attributes[0].baseURI);
document.write("<br>");
document.write("<br>");
}
</script>
</body>
</html>