how to redirect page javascript code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: javascript link to another page
window.open("http://mywebsite.com/home.html")
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
window.open("http://mywebsite.com/home.html")