how to move page in js code example
Example 1: redirect with javascript
window.location.replace('http://mywebsite.com/home.html');
Example 2: js go to page
window.location.href = "http://example.com/new_url";
Example 3: javascript link to another page
window.open("http://mywebsite.com/home.html")