2

I'm using this javascript code in firefox addon:

window.open(link);

It opens a link in a new Window. I was looking for function to open a link in a new tab but haven't found it. I found that this is in defined in firefox settings. I looked into my settings and found that I have defined "open in new tab" for everything (in Tabmixplus extension too). Do you know how to open a link in new tab?

thank you

xralf
  • 5,997
  • 40
  • 115
  • 180
  • Oh look, related questions, [Open Link in new tab in ff](http://stackoverflow.com/questions/5110129/open-link-in-new-tab-in-firefox-extension) – Andrew Jun 08 '11 at 19:41

1 Answers1

3

addTab? https://developer.mozilla.org/en/XUL/Method/addTab

Chris Pratt
  • 221,046
  • 31
  • 356
  • 415