I am trying to open multiple tabs in chrome without popup blocked
$('#button').click(function(){
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
});
But only one tab open at the moment How can i open multiple tab without popup blocked in google chrome