Refresh page at specific time : JavaScript Console
Open JS Console panel in Chrome by Pressing Ctrl + Shift + J (Windows / Linux) OR Cmd + Opt + J (Mac).
Tags:
How to automatically reload a web page at a certain time.
Auto Refresh a Page at Specific Time.
How to Refresh page at particular time
How to refresh page on specific day at specific time
Refresh at certain time of day
Refresh page at certain time
Copy and paste following code in console window
window.setInterval(function(){
if(new Date()>new Date("april 4, 2017 18:20:00") && new Date()<new Date("april 4, 2017 18:20:04")){
document.location.reload()
}
},1);
Tags:
How to automatically reload a web page at a certain time.
Auto Refresh a Page at Specific Time.
How to Refresh page at particular time
How to refresh page on specific day at specific time
Refresh at certain time of day
Refresh page at certain time
No comments: