View Single Post
  #2  
Old 11-28-2007, 10:12 PM
GDevakii GDevakii is offline
D-Web Sr.Programmer
 
Join Date: Aug 2007
Posts: 125
GDevakii is on a distinguished road
Smile Re: How to refresh an include js file every 10 seconds?

<script language="JavaScript">
setTimeout('location.reload(true)',10000);
document.write("Reloading from server");
</script>
Reply With Quote