I have a select box that calls window.open(url) when an item is selected. Firefox will open the page in a new tab by default. However, I would like the page to open in a new window, not a new tab.

How can I accomplish this?

link|improve this question

feedback

9 Answers

up vote 43 down vote accepted

I may be wrong, but from what I understand, this is controlled by the user's browser preferences, and I do not believe that this can be overridden.

link|improve this answer
16  
I told you I have code that works. I typed this into firebug console: window.open("", "poop", "height=200,width=200,modal=yes,alwaysRaised=yes"); and guess what??? it works!!!!!! – theman_on_vista Apr 7 '09 at 20:42
15  
Yes it works, but this seems to be a bit of a hack. Firefox is written in such a way that opening a new window vs tab is a browser preference, not a javascript preference. Therefore it is feasible that your suggestion wont work the same in a later version of firefox. I'd rather not rely on a hack. – adam Apr 8 '09 at 16:22
2  
And to be clear, I don't mean it's a javascript hack. Adding window height and width are clearly features of the js window.open method (w3schools.com/HTMLDOM/met_win_open.asp) I mean hack in the sense of manipulating the intended behavior of firefox. – adam Apr 8 '09 at 16:31
10  
Instead of saying "sorry to be rude" why not be nice? It think that is a much better idea. – Rimian Mar 15 '10 at 4:35
3  
+1 up top for the use of "poop" as a test string. – Hi there Jul 12 '11 at 15:31
show 5 more comments
feedback

Give the window a 'specs' parameter with width/height. See here for all the possible options.

window.open(url, windowName, "height=200,width=200");

When you specify a width/height, it opens it in a new window instead of a tab.

link|improve this answer
1  
Good tip. I think Opera will still open this in a tab though :). – Kevin Tighe Apr 7 '09 at 17:35
1  
Doesn't think it works in FF or Chrome (beta versions of both though, dunno about behavior for non-beta). – CookieOfFortune Apr 7 '09 at 17:36
2  
Your advice is right on, but your syntax is incorrect. – D_N Mar 26 '10 at 0:27
1  
(Syntax is now correct.) – D_N Feb 13 '11 at 1:13
1  
Working in IE6, FF 3.6, Chrome 9.0 – James Westgate Mar 10 '11 at 11:09
show 4 more comments
feedback

You don't need to use height, just make sure you use _blank, Without it, it opens in a new tab.

For a empty window:

window.open('', '_blank', 'toolbar=0,location=0,menubar=0');

For a specific URL:

window.open('http://www.google.com', '_blank', 'toolbar=0,location=0,menubar=0');
link|improve this answer
feedback

You shouldn't need to. Allow the user to have whatever preferences they want.

Firefox does that by default because opening a page in a new window is annoying and a page should never be allowed to do so if that is not what is desired by the user. (Firefox does allow you to open tabs in a new window if you set it that way).

link|improve this answer
8  
you are so wrong. and by the way, saying "you shouldnt need to" is not appropriate, especially if it is something the boss wants – theman_on_vista Apr 7 '09 at 17:31
Right, I could shift+click a hyperlink, but in this case window.open(url) is executed on the event of selecting a dropdown option. So that method doesn't work. Opening in a new window is an intentional part of the design specs. – adam Apr 7 '09 at 17:31
4  
Lets try and keep the comments practical and helpful. We can disagree without being insulting. – adam Apr 7 '09 at 17:43
8  
@theman_on_vista: Convincing your boss is your responsibility. Your company has bestowed on you the responsibility to resolve design issues. This includes pointing out wrong design ideas. – EFraim Jul 19 '10 at 21:10
1  
So true. The screen belongs to the user, and no one else. – Christopher Creutzig Sep 22 '10 at 16:49
show 1 more comment
feedback

Try:

    window.open("", [window name], "height=XXX,width=XXX,modal=yes,alwaysRaised=yes");

I have some code that does what your say, but there is a lot of parameters in it. I think these are the bare minimum, let me know if it doesn't work, I'll post the rest.

link|improve this answer
feedback

might try this function

<script type="text/javascript">
   function open_new_window(URL)
   {
   NewWindow = window.open(URL,"_blank","toolbar=no,menubar=0,status=0,copyhistory=0,scrollbars=yes,resizable=1,location=0,Width=1500,Height=760") ;
   NewWindow.location = URL;
   }
 </script>

sample html code

<a href="#" onClick="open_new_window('http://www.google.com');">google search</a>
link|improve this answer
feedback

Interestingly, I found that if you pass in an empty string (as opposed to a null string, or a list of properties) for the third attribute of window.open, it would open in a new tab for Chrome, Firefox, and IE. If absent, the behavior was different.

So, this is my new call:

 window.open(url, windowName, '');
link|improve this answer
feedback

I think PPK has a better write-up on pop-ups than w3schools.

http://www.quirksmode.org/js/popup.html

link|improve this answer
feedback

try this link, it works http://www.javascript-coder.com/files/window-popup/javascript-window-open-example1.html

link|improve this answer
No it doesn't work – mrk Jun 8 '11 at 19:44
feedback

protected by Community Jan 30 at 21:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.