How to Webpage reload or Refreash automatically ?
SEO Help and Tips
How to Webpage reload or Refreash automatically every minutes?
Head:
<script>
function autoRefresh() {
// Redirect the page to the same URL
window.location.href = window.location.href;
}
// Set the timer to refresh the page after 60 seconds (60000 milliseconds)
setTimeout(autoRefresh, 60000);
</script>
body: Not essential, but if not work you can use codes below.
<h1>Auto Refresh Page Example</h1>
<p>This page will automatically refresh every 60 seconds.</p>
<p>Click the following link if the page doesn't refresh: <a href="#" onclick="autoRefresh(); return false;">Refresh Now</a></p>
Comments
Post a Comment
Thanks for your Comments.