I am trying to open two webpages in two new tabs on button click. But when the application tries to open third tab, i am getting popup blocker. I know popup blocker wont be enabled when request comes from trusted source like button click etc. But is there any way to open two webpages in two tabs on single button click without popup blocker. Below is my code
selectField.on("click", function (e) {
e.preventDefault();
var url = 'http://<domain>:7080/Auth';
var url1 = 'http://<domain>:7080/geoserver'
window.open(url);
window.open(url1);
})