open url in same tab javascript code example
Example 1: window open same tab
window.open("https://www.youraddress.com","_self")
Example 2: javacript open url in new tab
window.open(url,'_blank');
window.open(url);
window.open("https://www.youraddress.com","_self")
window.open(url,'_blank');
window.open(url);