I need to open multiple windows in tabs using javascript. I know that i can open a single link in tab using target=_blank but here I can't do this.
What a开发者_运维问答re my alternatives?
In javascript, there's window.open
, to spawn a popup.
Though it works with links most of the time, I'm pretty sure it is limited on at most one popup window, otherwise the user popup blocker probably disables them.
Yes. See window.open
精彩评论