javascripthtmlrefresh

Refresh Page for interval using js


How can i refresh a page for every one minute using javascript. Note: I don't have control/option to edit HTML body tag (where we usually call onload function).


Solution

  • Just insert this code anywhere in the page:

    <script type="text/javascript">
      setTimeout(function(){
        location = ''
      },60000)
    </script>