Dec 16, 2002 #1 Kicket Technical User Jun 15, 2002 155 US how do u make a webpage redirect to another page in 3 seconds? like after 3 seconds if will auto go to next page... ff
how do u make a webpage redirect to another page in 3 seconds? like after 3 seconds if will auto go to next page... ff
Dec 16, 2002 1 #2 varocho Programmer Dec 4, 2000 238 US Look into using the HTML META tag... Upvote 0 Downvote
Dec 16, 2002 Thread starter #3 Kicket Technical User Jun 15, 2002 155 US what is taht? ff Upvote 0 Downvote
Dec 16, 2002 #4 varocho Programmer Dec 4, 2000 238 US Check it out: http://hotwired.lycos.com/webmonkey/96/51/index2a.html Upvote 0 Downvote
Dec 16, 2002 1 #5 rizza Programmer Jul 16, 2002 66 US if you just want a simple javascript to do it try this This JavaScript example opens the new site in the same browser window after displaying the current page in the window for 2 seconds (2000 ms): <script language="javascript" type="text/javascript"> <!-- window.setTimeout('window.location="URL-HERE"; ',2000); // --> </script> Or look at this page http://www.pa.msu.edu/services/computing/faq/auto-redirect.html Upvote 0 Downvote
if you just want a simple javascript to do it try this This JavaScript example opens the new site in the same browser window after displaying the current page in the window for 2 seconds (2000 ms): <script language="javascript" type="text/javascript"> <!-- window.setTimeout('window.location="URL-HERE"; ',2000); // --> </script> Or look at this page http://www.pa.msu.edu/services/computing/faq/auto-redirect.html
Dec 16, 2002 Thread starter #6 Kicket Technical User Jun 15, 2002 155 US both the javascript and the meta tag works fine thanks ff Upvote 0 Downvote