javascript to reload page on timer code example

Example 1: refresh page every second javascript

<script>
    window.setInterval('refresh()', 10000); 	
    // Call a function every 10000 milliseconds 
    // (OR 10 seconds).

    // Refresh or reload page.
    function refresh() {
        window .location.reload();
    }
</script>

Example 2: reload page jquery timer

setTimeout(function(){
   window.location.reload(1);
}, 5000);

Example 3: js timer reload page

//BY JS
setTimeout(function() {
  location.reload();
}, 30000);
//NOTE: YOU COULD DO IT BY HTML5 LIKE THIS:
<meta http-equiv="refresh" content="30"/>