user727272
user727272

Reputation: 475

Is there a way to open multiple links one by one into newtabs using javascript?

I need to open 5 or 6 new pages into seperate tabs through one click . Is it Possible to do it through javascript that works on all browsers.

regards

Upvotes: 1

Views: 112

Answers (1)

Alberto Zaccagni
Alberto Zaccagni

Reputation: 31590

Whether the new link is opened in a new tab or in a new window is handled by the user settings in the browser, so I do not think you can handle this in JavaScript.

Look for window.open to open 5 or 6 new windows.

Upvotes: 4

Related Questions