javascript redirect to url in same window code example
Example 1: window open same tab
window.open("https://www.youraddress.com","_self")
Example 2: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
window.open("https://www.youraddress.com","_self")
window.location.href = "http://mywebsite.com/home.html";