How do I redirect to another webpage?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How do I redirect to another webpage?
One does not simply redirect using jQuery
jQuery is not necessary, and
window.location.replace(...)
will best simulate an HTTP redirect.window.location.replace(...)
is better than usingwindow.location.href
, becausereplace()
does not keep the originating page in the session history, meaning the user won’t get stuck in a never-ending back-button fiasco.If you want to simulate someone clicking on a link, use
location.href
If you want to simulate an HTTP redirect, use
location.replace
For example:
There are lots of ways of doing this.
This works for every browser: