Mozilla Question?

Milamber

Registered
Any one here know if there is a way to make mozilla open a new tab on clicking a link? kinda like target="_tab" or something?
 
You're talking about a single click, right? You can already select control-click to do this in Mozilla's prefs. I have that setting selected.
There's a line in my prefs.js file that reads:
user_pref("browser.tabs.opentabfor.middleclick", true);
Try backing the file up and editing that line, maybe?
 
actually no, i mean that i could code a a tag into an html document and it would open a new tab instead of a entrie new window. ie:

< a href="http://www.yahoo.com/" target="_tab" >
 
Back
Top