views:

41

answers:

1

Hey guys. There are a few entries here requiring solutions to do the opposite of this, and others vaguely related. In one of them, the poster asked how to do this on Mozilla Firefox. Actually though, firefox will always open the URL in a new tab when window.open() is called, unless you set the window's size within its parameters.

So Mozilla and Chrome do what I want by default. The question is: how do I get Internet Explorer to open the URL I want within a new tab, as opposed to doing it in a new window?

Thanks in advance.

+1  A: 

The obvious answer is to open the link with target="_blank". As you said, Firefox and Chrome will open a new tab.

Regarding IE - the behavior is up to browser preferences. By default (in IE7+ obviously) I believe the behavior is defined as open new tab. If the user decided the behavior should be a new window, there's only so much you can do about it.

Yuval A
Yuval is correct, that's is a browser user defined preference.
Sergi
The only way I know is via extensions or Greasemonkey scripts http://browservulsel.blogspot.com/2006/03/single-left-click-tab-opener-user.html
Sergi
Also take a look to this thead http://www.dynamicdrive.com/forums/showthread.php?t=19843
Sergi