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?
|
I have a select box that calls How can I accomplish this?
| ||||
|
feedback
|
|
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. | |||||||||||||||||||||
feedback
|
|
Give the window a 'specs' parameter with width/height. See here for all the possible options.
When you specify a width/height, it opens it in a new window instead of a tab. | |||||||||||||||||||||
feedback
|
|
You don't need to use height, just make sure you use For a empty window:
For a specific URL:
| ||||
|
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). | |||||||||||||||||||
feedback
|
|
Try:
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. | ||||
|
feedback
|
|
might try this function
sample html code
| |||
|
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:
| |||
|
feedback
|
|
I think PPK has a better write-up on pop-ups than w3schools. | |||
|
feedback
|
|
try this link, it works http://www.javascript-coder.com/files/window-popup/javascript-window-open-example1.html | |||
|
feedback
|
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.