AJAX is not looping

floppymap

New Member
I have this html and ajax file, but it is not updating every second like I want it to. I want it to every second call getTime(). It only does it once, then nothing.Any thoughts? Thanks. \[code\]<head> <title>Auction</title> <script type="text/javascript"> function getTime() { if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } 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("txtHint").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","functions.php?action=getCurrentTime&id=13",true); xmlhttp.send(); setTimeout(getTime, 1000); } window.setInterval(getTime, 1000); </script></head><body> <?php beginGetAllInfo(); ?></body>\[/code\]
 
Back
Top