faqts : Computers : Programming : Languages : JavaScript : Forms : Buttons

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

24 of 45 people (53%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

After pressing the submit button, how do I automatically redirect users back to my homepage?

Jun 9th, 2001 21:06
Darton Williams, Cam B,


The easiest way to do it would be to use location.href on the page that 
processes the form, assuming that the form doesn't submit to the same 
page. If it does, you could probably still do it with a timeout, e.g.
setTimeout('self.location.href="http://....."', 250);