Page 1 of 1

Reload perfection

Posted: Mon Oct 28, 2002 8:48 am
by Heavy
Please, tell me there is a better way performing automatic reloads than:

Code: Select all

<HTML>
 <HEAD>
  <SCRIPT Language=JavaScript>

   document.location.reload();

  </SCRIPT>
 </HEAD>
 <BODY>
 </BODY>
</HTML>
I'd prefer something like:

Code: Select all

<HTML>
 <HEAD>

 <META Reload>

 </HEAD>
 <BODY>
 </BODY>
</HTML>

Posted: Mon Oct 28, 2002 9:07 am
by volka

Code: Select all

<meta http-equiv="refresh" content="1; URL=http://www.another-p.age/">

Posted: Mon Oct 28, 2002 5:40 pm
by Heavy
zanx