how to redirect any url in javascript code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: javascript howdo i redirect-to another webpage
window.location = "https://example.com/";