Atualizar ou recarregar automaticamente uma página usando setInterval ()
<!DOCTYPE html>
<html>
<head>
<title>Page Reload after 10 seconds</title>
</head>
<body>
<h2>Softhunt.net</h2>
</body>
<script type="text/javascript">
function autoRefreshPage()
{
windowwindow.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>
</html>
Outrageous Ostrich