js how to get to another webpage code example
Example 1: js go to page
window.location.href = "http://example.com/new_url";
Example 2: javascript howdo i redirect-to another webpage
window.location = "https://example.com/";
Example 3: javascript link to another page
window.open("http://mywebsite.com/home.html")