Reload a page over and over from console

490 Views Asked by At

I've tried using my Browser's console in order to reload the page over and over every 5 seconds, but it's not working at all.

I have used the code below, however, it reloads the page one time but the loop doesn't continue for some reason.

    setTimeout(function()
{
       window.location.reload(1);
}, 5000);
0

There are 0 best solutions below