<!DOCTYPE html>
<html>
<head>
<script src="/statics/demosource/loadxmldoc.js">
</script>
</head>
<body>
<script>
xmlDoc=loadXMLDoc("/statics/demosource/books.xml");
x=xmlDoc.getElementsByTagName("title")[0].getAttributeNode("lang");
txt=x.nodeValue;
document.write(txt);
</script>
</body>
</html>