Anyone know how to make a page change to another page(as if a link was clicked) after like displaying the page for 3 seconds? Like after you add a message it gives you two links, go back and view you message, and edit your message, if you don't click one it will automatically take you to your message.
Someone give me an example of how that is done?
Thanks for all help and advice provided.
Making page change location after few seconds
Moderator: General Moderators
when you posted that message you had an example 
Within the doucment that told you "Your message has been successfully entered" there is a linein the header section, asking the browser to replace this document in 3 seconds by viewtopic.php?p=31715#31715
Within the doucment that told you "Your message has been successfully entered" there is a line
Code: Select all
<meta http-equiv="refresh" content="3;url=viewtopic.php?p=31715#31715">If you were using JavaScript, you do this:
Code: Select all
setTimeout("location.href='new.htm';", 3000);-
waskelton4
- Forum Contributor
- Posts: 132
- Joined: Mon Sep 09, 2002 6:42 pm