|
|
Q82 How do I force a reload/refresh from the current page?
irt.org | Knowledge Base | JavaScript | Redirect | Q82 [ previous next ] Q82 How do I force a reload/refresh from the current page?You can for JavaScript 1.1 use the location objects reload method:
Failing that you could try a meta tag that doesn't allow the page to be cached so that the following would reload:
The no cache meta tag needs to be placed in between the <HEAD> and </HEAD> tags:
Or you could use the meta tag for expires, to always ensure that a newer copy is loaded:
Or you could refresh the page automatically after a delay using the refresh meta:
Feedback on 'Q82 How do I force a reload/refresh from the current page?' |
-- div -->
|