Hi...All
I am new to Ajax in PHP
and trying the below code which works fine in Google Chrome
but not works in IExplore..
Thanks in Advance
<script language="javascript">
function showTeh(str)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("teh").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","inc/getTeh.php?q="+str,true);
xmlhttp.send();
}
</script>