topical media & game development
professional-javascript-15-MozillaXmlDomExample2.htm / htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Mozilla XML DOM Example</title>
</head>
<body>
<p>This example loads an XML file <em>asynchronously</em>.</p>
<script type="text/javascript">
var oXmlDom = document.implementation.createDocument("","",null);
oXmlDom.async = true;
oXmlDom.onload = function () {
alert("Tag name of the root element is " + oXmlDom.documentElement.tagName);
alert("The root element has this many children: " + oXmlDom.documentElement.childNodes.length);
};
oXmlDom.load("test.xml");
</script>
</body>
</html>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.