Actualiser ou recharger automatiquement une page à l'aide de 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