I have a website that I want to be reloaded at a certain time, like 3:35pm, not after a specific interval like 5min. How do I do that?
|
|
|||||||||||||
|
|
|
Basically, there are many javascript codes out there that can refresh the page ever so minutes or something, you can edit them to refresh at hours too. Like this one:
(now just calculate the minutes and seconds you want it to refresh, like for example noon everyday if it were noon now:
Now you could use this code except, most of them don't work with server time, And with the information you provided us, we really can't do anything more. Edit your question and tell us if you want it to be timed with the servers time, or something else. |
|||
|
|
|
|
this will force page to reload every 5 seconds. Just calculate the correct interval and add it to content tag |
||||||||
|
|
|
Basically, when the page is accessed, calculate how much time is remaining between the access time and the time you want to reload the page, and use that remaining time in the meta refresh header. Obviously this would need to be done in a CGI script or web application, or possibly with SSI (server-side includes); it won't work if all you have is a static HTML file. Another alternative would be to use Javascript, but it won't work if the client has Javascript disabled. |
||||
|
|
|
The following JavaScript snippet will allow you to refresh at a given time:
Then you can add a script tag to call the
|
||
|
|
