how to auto refresh a page javascript code example
Example 1: 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"/>
Example 2: auto refresh page javascript
<meta http-equiv="refresh" content="30"/>