<script type="text/javascript"> function thediv(){ var xmlHttp; try{ xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari } catch (e){ try{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer } catch (e){ try{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){ alert("No AJAX!?"); return false; } } } xmlHttp.onreadystatechange=function thediv(){ if(xmlHttp.readyState==4){ document.getElementById('thediv').innerHTML=xmlHttp.responseText; setTimeout('thediv()',500000); } } xmlHttp.open("GET","blah.php",true); xmlHttp.send(null); } window.onload=function thediv(){ setTimeout('thediv()',5000); } </script> <div id="thediv">Loading..</div>
xmlHttp.onreadystatechange=function thediv(){
xmlHttp.onreadystatechange=function(){