1

I try to open 3 new tabs (at the same time) via chrome, EI, firefox, each tab will return a file. ie and mozilla open 3 new tabs (it is ok). chrome opens 1 tab and two windows.

Script: window.open(url '_blank') or window.open(url '_tab') behaviour is the same

Is there any way to open 3 new tabs in chrome ?

dmreshet
  • 1,496
  • 3
  • 18
  • 28

2 Answers2

3

This is up to the settings of your browser. You can't modify this with code.

Andy
  • 3,997
  • 2
  • 19
  • 39
-2

No, JavaScript has no knowledge of tabs. Generally you want to avoid window.open altogether for exactly this reason. - stay with regular links instead and possibly don't force a new tab/window on the user (he has a middle mouse button anyway).

ThiefMaster
  • 310,957
  • 84
  • 592
  • 636