Mike D
Mike D

Reputation: 2841

New page opens in new window, not new tab in Firefox

I have a site consisting of a frameset with two frames. One of the frames opens a new document ala...

var myWin= open("","ImgWindow","status=yes,toolbar=yes,menubar=yes,scrollbars=yes");
  myWin.document.open();

My Mozilla Firefox 3.0.19 is configured to open new pages in tabs, not windows.

Firefox opens the document in a new Window, not a tab. IE and Opera open the document in a new tab.

Is there something I can do to cause the document to open in a new tab in Firefox?

Upvotes: 0

Views: 731

Answers (1)

Mewp
Mewp

Reputation: 4715

This page might help you.

With default settings, if you invoke window.open() without the third parameter, firefox will open the window in a new tab, otherwise in a new window.

Upvotes: 1

Related Questions