js open new tab per clicke code example
Example 1: js redirect to url new tab
window.open('http://stackoverflow.com', '_blank');
Example 2: open link in new tab javascript
window.open('https://www.codexworld.com', '_blank');
Example 3: javascript open link in new tab
function NewTab() {
window.open(
"https://www.yourURL.com", "_blank");
}
Example 4: javascript close current tab
window.close();//closes the current browser tab