open window in same tab html code example
Example 1: open new tab html
<a href="your link" target="_blank">The home page will open in another tab.</a>
Example 2: window open same tab
window.open("https://www.youraddress.com","_self")
<a href="your link" target="_blank">The home page will open in another tab.</a>
window.open("https://www.youraddress.com","_self")