[AJAX] בעייה בפיירפוקס.
עובד לי מצויין בIE..
אבל ב FF לא עובד, ואין שגיאה כלום :S
הקוד..
HTML קוד:
<html>
<body>
<script type="text/javascript">
function ajaxFunction()
{
var xmlHttp;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
alert("Your browser does not support AJAX!");
return false;
}
}
}
xmlHttp.open("POST","time.php",true);
xmlHttp.onreadystatechange=function()
{
if(xmlHttp.readyState==4)
{
document.myForm.time.value=xmlHttp.responseText;
}
}
var str = "comment="+document.getElementById("comment").value;
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=windows-1255");
xmlHttp.setRequestHeader("Content-length", str.length);
xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.send(str);
}
</script>
<form name="myForm">
Name: <input type="text"
onkeyup="ajaxFunction();" name="comment" />
Time: <input type="text" name="time" />
</form>
</body>
</html>
time.php:
PHP קוד:
<?php
echo $_POST['comment'];
?>
תודה (: (:
|