javascript - How do I redirect to another webpage? - Stack Overflow

PHOTO EMBED

Mon Oct 10 2022 16:41:10 GMT+0000 (Coordinated Universal Time)

Saved by @kalehm #javascript

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
content_copyCOPY

https://stackoverflow.com/questions/503093/how-do-i-redirect-to-another-webpage