up vote 1 down vote favorite
share [g+] share [fb]

How do I cause the page to make the user jump to a new web page after X seconds. If possible I'd like to use HTML but a niggly feeling tells me it'll have to be Javascript.

So far I have the following but it has no time delay

<body onload="document.location='newPage.html'">
link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

A meta refresh is ugly but will work. The following will go to the new url after 5 seconds:

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

http://en.wikipedia.org/wiki/Meta_refresh

link|improve this answer
This really is the best - no JavaScript needed, so it will work just about anywhere. – Jason Bunting Sep 26 '08 at 17:32
feedback

If you are going the JS route just use

setTimeout("window.location.href = 'newPage.html';", 5000);
link|improve this answer
feedback

Put this is in the head:

<meta http-equiv="refresh" content="5;url=newPage.html">

This will redirect after 5 seconds. Make 0 to redirect onload.

link|improve this answer
feedback

You can use good ole' META REFRESH, no JS required, although those are (I think) deprecated.

link|improve this answer
feedback

The Meta Refresh is the way to go, but here is the JavaScript solution:

<body onload="setTimeout('window.location = \'newpage.html\'', 5000)">

More details can be found here.

link|improve this answer
feedback

The JavaScript method, without invoking eval in the the setTimeout:

<body onload="setTimeout(function(){window.location.href='newpage.html'}, 5000)">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.