Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q429 How can I make sure that when I return to a page it always loads the latest version from the server?

You are here: irt.org | FAQ | JavaScript | Redirect | Q429 [ previous next ]

The no cache meta tag needs to be placed in between the <HEAD> and </HEAD> tags:

<META HTTP-EQUIV="no-cache">

Or you could use the meta tag for expires, to always ensure that a newer copy is loaded:

<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">

©2018 Martin Webb