go to another page javascript code example
Example 1: go to another page javascript
window.location.href = "http://mywebsite.com/home.html";
Example 2: redirect with javascript
window.location.replace('http://mywebsite.com/home.html');
Example 3: javascript howdo i redirect-to another webpage
window.location = "https://example.com/";