How do I refresh the page automatically every 15 minutes based on clock time?
For example: refresh on 9:00, 9:15, 9:30, 9:45, 10:00, 10:15, so on..
I have seen one similar like I wanted : https://stackoverflow.com/a/1217945/551559 but I don't think it does the job.
setInterval(function(){
// check clock time on every minute??
if ( clock_time === '9:15' ) {
}
},1000);
Can someone give me a solution or any link to look at?