On my site I want reload my page twice: After 20 seconds of being on the page and after 50 seconds.
This is the code I use:
<script>
(function()
{
if( window.localStorage)
{
if( !localStorage.getItem('firstLoad') )
{
localStorage['firstLoad'] = true;
setTimeout(function(){ location.reload(); }, 20000)
}
else
localStorage.removeItem('firstLoad');
}
})();
</script>
But the page is reloaded only once after 20 seconds. What I can do to refresh the page again after 50 sec?