We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

mountainash on 01/27/07


Tagged

location time window flash move href timeout splash shift


Versions (?)


Who likes this?

5 people have marked this snippet as a favorite

Hirmine
basicmagic
vali29
SpinZ
mountainash


Delayed redirect


Published in: JavaScript 


Handy for after submitting a form or moving sites and wanting to tell users about the change. Just change the URL (can be absolute or relative) and the timeout. Shown here as 5 seconds.


  1. setTimeout( "window.location.href = 'http://walkerwines.com.au/'", 5*1000 );

Report this snippet 

You need to login to post a comment.