I am trying to show a script in a div tag. But in the div tag the script does not run.
Here is my Code:
<div id="div0" align="right">
<script type="text/javascript">
<!--
alert("Hi");
-->
</script>
</div>
It does not work for me. Please anybody tell me, what is the problem?
Edit:
My complete code is that:
<html>
<head>
<script type="text/javascript">
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for Firefox, Opera, IE7, etc.
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
function state_Change()
{
if (xmlhttp.readyState==4)
{// 4 = "loaded"
if (xmlhttp.status==200)
{// 200 = "OK"
document.getElementById('T1').innerHTML=xmlhttp.responseText;
}
else
{
alert("Problem retrieving data:" + xmlhttp.statusText);
}
}
}
</script>
</head>
<body onload="loadXMLDoc('test_xmlhttp.php')">
<div id="T1"></div><br />
</body>
</html>
My test_xmlhttp.php is as follows:
<script type="text/javascript">
<!--
alert("Hi");
-->
</script>
But It shows nothing. Please Please Please give me a solution.