How to Refresh Webpage every few Mins using JavaScript ?

In one of my previous blog post , i explained how to refresh Webpage every few minutes using HTML meta tag . In this blog post , i will explain how one can refresh the webpage using JavaScript.

Assuming that the webpage needs to be refreshed every 60 seconds , below is a sample code snippet that demonstrates how to refresh the page with the window.location.reload() JavaScript function.

How to Refresh Webpage every few Mins using JavaScript ?

<html>

  <head>

  </head>

  <body onload="setInterval('window.location.reload()', 60);">

  </body>

</html>

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

You can pass an array of integer to an ASP.NET Web Web API REST service by setting the [FromUri] attribute...
One of the common ways to refresh webpage every few mins is by using JavaScript or HTML Meta tag. For...
This post will provide the list of some of the top ASP.NET based Content Management Systems (CMS) that you may...