Refreshing A Page

liunx

Guest
Is it possible toput a script in html the automatically refresh a screen without having to hit the refresh button<!--content-->yes, there is something called a META tag.<br />
<br />
This is basically a tag used to hold instructions and information for the browser. Meta tags go in the HEAD section of your page:<br />
<br />
<br />
<head><br />
<meta http-equiv='refresh' content='30;url=http://somewhere.com'><br />
</head><br />
<br />
<br />
the url can be any valid path, so you can enter in a local file as well.<br />
<br />
you can have the page refresh as fast as you want - change the number before the url.<br />
<br />
don't refresh/redirect in less than 3 seconds - this gives people time to use the back button properly<!--content-->
 
Back
Top