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

Q949 How can I load another page, but force it to reload from the server and not the cache?

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

Try:

<script language="JavaScript"><!--
function go(url) {
    location.href = url + '?' + (new Date()).getTime();
}

go('newpage.html');
//--></script>

Feedback on 'Q949 How can I load another page, but force it to reload from the server and not the cache?'

©2018 Martin Webb