Learn how to redirect to another webpage using JavaScript.
Read on how to do it in this tutorial: https://www.w3schools.com/howto/howto_js_redirect_webpage.asp
Redirect a Webpage
There are a couple of ways to redirect to another webpage with JavaScript. The most popular ones are location.href
and location.replace
Try it yourself here: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_redirect_webpage
Tip: For more information about the Location Object, read our Location Object Reference.