js timer reload page 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: 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"/>