Refresh Page for interval using js

Just insert this code anywhere in the page:

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

Leave a Comment