change url javascript redirect code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: javascript change url without redirect
window.history.pushState("", "", '/newpage');
Example 3: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 4: redirect with javascript
window.location.replace('http://mywebsite.com/home.html');