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

Q1196 Using javascript can I reload the page every 15 minutes?

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

Try:

<script language="JavaScript"><!--
if (document.images)
    setTimeout('location.reload(true)',1000*60*15); // forces a reload from the server
else
    setTimeout('location.href = location.href',1000*60*15);  // just reloads the page
//--></script>

Feedback on 'Q1196 Using javascript can I reload the page every 15 minutes?'

©2018 Martin Webb