<script type="text/javascript" src="/example/xdom/loadxmldoc.js">
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
var x=xmlDoc.getElementsByTagName('book');
x.item(i).setAttribute("category","BESTSELLER");
document.write(x[i].getAttribute('category'));
document.write("<br />");