Open a URL in a new tab (and not a new window)

I’m trying to open a URL in a new tab, as opposed to a popup window.

I’ve seen related questions where the responses would look something like:

window.open(url,'_blank');
window.open(url);

But none of them worked for me, the browser still tried to open a popup window.

3
32

Leave a Comment