catch event redirect to another domain in javascript code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: javascript go to url
window.location = url;
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
window.location = url;