Collector_In.htm
Collector_In.htm
—
HTML,
0Kb
File contents
<html>
<head>
<script type="text/javascript">
function parseXML()
{
try //Internet Explorer
{
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
catch(e)
{
try //Firefox, Mozilla, Opera, etc.
{
xmlDoc=document.implementation.createDocument("","",null);
}
catch(e)
{
alert(e.message);
return;
}
}
xmlDoc.async=false;
xmlDoc.load("http://136.165.46.137/Collector_In.xml");
document.getElementById("Val").innerHTML=xmlDoc.getElementsByTagName("Val")[0].childNodes[0].nodeValue;
}
</script>
</head>
<body onload="parseXML()">
<b><span style='font-size:24.0pt;font-family:
"Arial","sans-serif";color:red'><span id="Val"></span></span></b>
</body>
</html>

