I have a page that I am attempting to refresh every 3 minutes. Is there a way to get the page to refresh automatically without popping up the "Resend information" dialogue?
<script language="JavaScript"><!--
if (document.images)
setTimeout('location.reload(true)',1000*60*3); // forces a reload from the server
else
setTimeout('location.href = location.href',1000*60*3); // just reloads the page
//--></script>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.