Forum Moderators: open
the html page has the following code
Code:
<html>
<head>
<script type="text/javascript">
var xmlDoc
function loadXML()
{
//load xml file
// code for IE
if (window.ActiveXObject)
{
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async=false;
xmlDoc.load("profile.xml");
getmessage()
}
function getmessage() {
document.getElementById("rank").innerHTML=
xmlDoc.getElementsByTagName("rank")[0].firstChild.nodeValue
}
</script>
</head>
<body onLoad="loadXML()" bgcolor="#999900">
<p><b>Name:</b> <span id="rank"></span><br />
</body>
</html>
the XML file has the following code
Code:
<?xml version="1.0"?>
<profile>
<name>Haroon Ahmad</name>
<rank>Project Manager</rank>
<salary>5000</salary>
<office>ET Development Wing</office>
<job>Programmer and PHP Guru</job>
<phone>0300 5937133</phone>
</profile>