Skip to content

Instantly share code, notes, and snippets.

@masautt
Created September 3, 2019 23:22
Show Gist options
  • Save masautt/e6fc62dc2712f75ca054f582df407720 to your computer and use it in GitHub Desktop.
Save masautt/e6fc62dc2712f75ca054f582df407720 to your computer and use it in GitHub Desktop.
How to redirect to another webpage in JavaScript?
// Through the console?
window.location.replace("https://google.com");
// Put it on a button?
document.getElementById("myBtn").addEventListener("click", () => {
window.location.href = "https://google.com";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment