Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

html noob question 2

Status
Not open for further replies.

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
 
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=&quot;javascript&quot; type=&quot;text/javascript&quot;>
<!--
window.setTimeout('window.location=&quot;URL-HERE&quot;; ',2000);
// -->
</script>

Or look at this page

 
both the javascript and the meta tag works fine
thanks

ff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top