How can I redirect the user from one page to another using jQuery or pure JavaScript?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
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.
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.hrefIf you want to simulate an HTTP redirect, use
location.replaceFor example: