Refresh document every 300 seconds using HTML Meta tag add this inside the head tag of the page
<meta http-equiv="refresh" content="300">
Or using Java Script: setInterval(function() {
window.location.reload();
}, 300000);
No comments:
Post a Comment