<script type="text/javascript" src="/example/xdom/loadxmldoc.js">
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books_ns.xml");
var x=xmlDoc.getElementsByTagName('title');
document.write("Prefix: " + x.item(i).prefix);
document.write("<br />");
document.write("Local name: " + x.item(i).localName);
document.write("<br />");
document.write("Namespace URI: " + x.item(i).namespaceURI);
document.write("<br />");
document.write("Base URI: " + x.item(i).baseURI);
document.write("<br />");
document.write("<br />");