html - Open a tabbed window in Chrome using javascript -
is there way open tabbed window(a window tabs) in chrome using javascript?
when open new window following:
window.open( "http://google.com", "google", "width=800,height=600" );
the window has no tabs, so:
sadly no, if call window.open event callback act same way link target "_blank" opening new tab or window depending on user settings of browser. if call anywhere else open new window non-editable address bar , not respect of settings pass it.
not sure if it's bug or feature there isn't documentation on can find explaining reasoning.
Comments
Post a Comment