Hey guys, I'm setting up a system here and I need the page to refresh automatically every 60 seconds, how could I do it?
Hey guys, I'm setting up a system here and I need the page to refresh automatically every 60 seconds, how could I do it?
Put this script on the page:
<script type="text/javascript">
Redirect();
function Redirect()
{
setTimeout("location.reload(true);",60000);
}
</script>
In 60 seconds, it will be reloaded.