tag for automatically going to next page??

liunx

Guest
I've used a tag a long time ago to go from one page tro the next without any user input. But I cant remember what it was....Anyone know???<br />
<br />
Example.<br />
Page A.html loads.....waits a specified period of time.....then B.html is loaded etc...<!--content-->Put this in your <head> tag:<br />
<br />
<meta http-equiv="refresh" content="3; url=http://www.example.com/"><br />
<br />
This tells the browser to load <!-- m --><a class="postlink" href="http://www.example.com">http://www.example.com</a><!-- m --> after 3 seconds. Use the same code without the "url=" bit to reload the current page.<br />
<br />
Adam<br />
<br />
P.S. Note that some browsers do not support this, and it can be disabled, so make sure there is some other way for your users to progress.<!--content-->
 
Back
Top