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