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
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.
精彩评论