I’m trying to use window.open to open a URL in a new tab or window. At the moment I can only get it to open in a “pseudo-window” which ressembles more a pop-up than a proper window.
How can I use JavaScript to open URLs in a proper window or tab in Chrome?
Note: I’ve tried finding the code for the function window.open using the Code Search, but cannot find it.
As far as I know, this is controlled by the browser and we don’t have a way to change it.
You could use a hyperlink with the target set to
"_blank"and try, but that wouldn’t bewindow.open.