Click to See Complete Forum and Search --> : tag for automatically going to next page??


Mikepix
04-16-2003, 03:45 AM
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???

Example.
Page A.html loads.....waits a specified period of time.....then B.html is loaded etc...

AdamGundry
04-16-2003, 04:07 AM
Put this in your <head> tag:

<meta http-equiv="refresh" content="3; url=http://www.example.com/">

This tells the browser to load http://www.example.com after 3 seconds. Use the same code without the "url=" bit to reload the current page.

Adam

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.