I\'m trying to open multiple links at once in Google Chrome in new tabs but it fails.
Problems:
User will have to allow popups but I ended up doing this:
function openMultipleTabs(urlsArray){ urlsArray.forEach(function(url){ let link = document.createElement('a'); link.href = url; link.target = '_blank'; link.click(); }); }