window.open(url, '_blank'); not working on iMac/Safari

JavascriptMacosSafari

Javascript Problem Overview


I've build a web page that let's you select a page name from a drop down list and then transfers the browser to that page. The code that does the transfer is

if (url){
    window.open(url, '_blank');
} 

where "url" is the page selected.

A console log just before the window.open line prints something like:

    executing: window.open(http://www.mywebsite.com/44/threats.html, '_blank')

and then the browsers opens the page in a new tab.

This works fine on Windows 7 for all the browsers, including Safari.

On an iMac it works for Firefox but not for Safari.

Does anyone know why iMac/Safari won't do this?

Javascript Solutions


Solution 1 - Javascript

Safari is blocking any call to window.open() which is made inside an async call.

The solution that I found to this problem is to call window.open before making an asnyc call and set the location when the promise resolves.

var windowReference = window.open();

myService.getUrl().then(function(url) {
     windowReference.location = url;
});

Solution 2 - Javascript

To use window.open() in safari you must put it in an element's onclick event attribute.

For example: <button class='btn' onclick='window.open("https://www.google.com", "_blank");'>Open Google search</button>

Solution 3 - Javascript

Taken from the accepted answers comment by Steve on Dec 20, 2013:

> Actually, there's a very easy way to do it: just click off "Block popup windows" in the iMac/Safari browser and it does what I want.

To clarify, when running Safari on Mac OS X El Capitan:

  1. Safari -> Preferences
  2. Security -> Uncheck 'Block pop-up windows'

Solution 4 - Javascript

You can't rely on window.open because browsers may have different policies. I had the same issue and I used the code below instead.

let a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.href = <your_url>;
a.download = <your_fileName>;
a.click();
document.body.removeChild(a);

Solution 5 - Javascript

window.location.assign(url) this fixs the window.open(url) issue in ios devices

Solution 6 - Javascript

Open link in a new tab, programatically with JavaScript for: safari, mobile safari and other browsers:

const link = 'https://google.com';

const a = document.createElement("a");
a.setAttribute('href', link);
a.setAttribute('target', '_blank');
a.click();

Solution 7 - Javascript

Using setTimeout

Wrapping your window.open(url, '_blank') line of code in the async function with a setTimeout works as well,

setTimeout(() => {
    window.open(url, '_blank');
})

setTimeout code runs on the main thread, instead of the asynchronous one. Tested in Chrome and Safari.

Solution 8 - Javascript

There's a setting in Safari under "Tabs" that labeled Open pages in tabs instead of windows: with a drop down with a few options. I'm thinking yours may be set to Always. Bottom line is you can't rely on a browser opening a new window.

Solution 9 - Javascript

This should work: window.location.assign(url); Usually it is important to save the state, before leaving the page, so have this in mind as well.

Solution 10 - Javascript

The correct syntax is window.open(URL,WindowTitle,'_blank') All the arguments in the open must be strings. They are not mandatory, and window can be dropped. So just newWin=open() works as well, if you plan to populate newWin.document by yourself. BUT you MUST use all the three arguments, and the third one set to '_blank' for opening a new true window and not a tab.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSteveView Question on Stackoverflow
Solution 1 - JavascriptJeff VictorinoView Answer on Stackoverflow
Solution 2 - Javascriptuser2704238View Answer on Stackoverflow
Solution 3 - JavascriptjnrcorpView Answer on Stackoverflow
Solution 4 - JavascriptAbrehamView Answer on Stackoverflow
Solution 5 - Javascriptsama vamsiView Answer on Stackoverflow
Solution 6 - JavascriptSergiiView Answer on Stackoverflow
Solution 7 - JavascriptMiguel StevensView Answer on Stackoverflow
Solution 8 - JavascriptBill CriswellView Answer on Stackoverflow
Solution 9 - JavascriptlyuboeView Answer on Stackoverflow
Solution 10 - JavascriptGuidoView Answer on Stackoverflow