how to link to new page with js code example
Example 1: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 2: redirect with javascript
window.location.replace('http://mywebsite.com/home.html');
window.location.href = "http://mywebsite.com/home.html";
window.location.replace('http://mywebsite.com/home.html');