I would like to open a link in a new window that opens multiple tabs. Currently, I am able to to open multiple tabs in the same window; this looks something like:
$('a.yourlink').click(function(e) {
e.preventDefault();
window.open('http://yahoo.com');
window.open('http://google.com');
So clicking a link of class 'yourlink' will open multiple links on the same window.
For doing the same thing, but in a new normal window, I have tried using the following jquery arguments window.open('url', 'window name', 'window settings')
in the first window.open
. However this only makes one link open in a new window, and also in an undesirable format.