javascript send to another page code example
Example 1: js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
Example 2: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 3: js go to page
window.location.href = "http://example.com/new_url";