Open a URL in a new tab (and not a new window) using JavaScript

Go To StackoverFlow.com

1749

I'm trying to open a URL in a new tab, as opposed to a popup window. I've seen related questions where the responses would look something like:

window.open(url,'_blank');
window.open(url);

But none of them worked for me, the browser still tried to open a popup window.

2011-02-05 15:52
by Mark F
This is usually a matter of preference. Some people like windows (and fiercely protect this behavior), some tabs (and fiercely protect this behavior). So you would be defeating a behavior that is generally considered to be a matter of taste, not design - Jared Farrish 2011-02-05 15:57
Javascript knows nothing about your browser and tabs vs windows, so it is really up to the browser to decide how to open a new window - Andrey 2011-02-05 15:58
How can I configure Chrome to display it in a new tab, as opposed to a popup - Mark F 2011-02-05 15:58
Unless, of course, you are developing a Firefox addon, or using XULRunner to develop a client: https://developer.mozilla.org/en/Codesnippets/Tabbedbrowser NOTE: These techniques only work for clients you have some degree of access to the underlying browser, not the window found within normal HTTP pages - Jared Farrish 2011-02-05 16:00
Is there a way I can tell the browser to open a new blank tab, and then control its location - Mark F 2011-02-05 16:03
@Mark F - To answer your question about opening links in tabs, try http://www.tothepc.com/archives/open-links-in-new-tab-google-chrome-shortcut/ - Jared Farrish 2011-02-05 16:08
It's probably both good and bad that almost all of these fall prey to pop-up blockers. It would be nice if I could get a user to click "OK" or something and then pop up the page - jocull 2012-09-18 20:12
Gmail does this somehow, at least in Chrome. Shift+click on an email row and you open that email in a new window. Ctrl+click and you open it in a new tab. Only problem: digging into gmail's obfuscated code is a PIT - Sergio 2013-06-03 16:26
@Sergio, that's the default browser behavior for any link. (For Chrome and Firefox at least.) Has nothing to do with Gmail - Qtax 2013-08-01 20:28
may be due to browser settings, but for me window.open(url); opened it up in new tab of chrome and firefo - Raza Ahmed 2013-08-30 06:18
quora.com does it on clicking a new question link. regardless of where you are, the window opens in a new tab not a new window. Its also using a to do it - Sangram Singh 2013-11-12 19:16
@SangramSingh, that's not a function of javascript. Quora is simply setting the target attribute of anchor tags to "_blank". If you uncheck, e.g., Firefox's "Open new windows in a new tab instead" option, those links will open new windows rather than tabs - squidbe 2013-12-12 22:00
@Qtax: If Shift+Click and Ctrl+Click open new windows differently (according to user preferences), could you trigger a keypress event in JS to simulate such a keystroke, and thereby open a new tab (or window) that way - David R Tribble 2016-08-26 14:51
@DavidRTribble No. You can't even "real click" on an <code><a></code> with JS - Qtax 2016-08-26 15:11
Chrome specific solution (dirty hack, though): window.open("https://www.google.co.kr/_/chrome/newtab?ie=UTF-8") - Константин Ван 2018-01-23 06:48
An alternative:

In HTML -> <button onClick="clickLink('#link')">Open Your Domain On New Tab</button> <a id="link" href="https://yourdomain.com" target="_blank" hidden></a>

In Javascript -> function clickLink(id) { document.getElementById(id).click(); }ericgm 2018-02-06 11:30



770

Nothing an author can do can choose to open in a new tab instead of a new window. It is a user preference.

CSS3 proposed target-new, but the specification was abandoned.

The reverse is not true; by specifying dimensions for the window in the third argument of window.open, you can trigger a new window when the preference is for tabs.

2011-02-05 15:53
by Quentin
@JacksonGariety — And how does that override the browser preference for window or tab - Quentin 2012-11-05 16:57
How come this is the accepted answer? I've tested the below given answers from duke and arikfr and they work perfectly fine in FF, Chrome and Opera except IE (where it doesn't work) and Safari (where it opens in new window instead of new tab) - Glänzende Perlen 2013-04-05 07:15
@AliHaideri The Javascript has nothing to do with how the new tab/window is opened. It's all determined by your browser's settings. Using window.open tells the browser to open something new, then the browser opens up what is chosen in its settings - tab or window. In the browsers you tested with, change the settings to open in a new window instead of a tab and you'll see the others' solutions are wrong - Ian 2013-04-18 13:53
What about if I just want to control it on my own browser? Chrome keeps opening popups for window.open() unless I use Venkat's solution. Holding Ctrl when I click the button also works - Luke 2013-06-26 22:54
@PaulBrown Not if the default browser settings make links open in a new window instead of a new tab - toon81 2013-07-11 07:37
Two things that waste other people's time more than telling them something can't be done. (1) Telling them something that can't be done can be done. (2) Staying silent and letting them keep looking for a way to do something that can't be done - Quentin 2013-12-06 08:15
@Luke: If it's a question of how to get this functionality only in your own browser, it's probably a question for the SuperUsers site - Trevor 2014-04-07 20:36
@Bondye — The question is asking about new tabs instead of new windows. The fact you get new windows is rather the point - Quentin 2014-04-14 14:32
@Quentin is there any official documentation or source code that you could add to your answer that will definitively prove it, or at least some screenshots of the Firefox and IE user preferences that control this behavior - NoName 2014-04-30 09:02
@Cupcake — Documentation usually doesn't bother to describe features which do not exist. https://www.evernote.com/shard/s3/sh/428d2d68-39f9-491d-8352-8a9c217b67d7/83375030b6645bf8e7ddbc19c531b79 - Quentin 2014-04-30 09:07
@Quentin you should add that to your answer, I think it will greatly clarify it - NoName 2014-04-30 21:16
@Neel — Because it succinctly gets to the point on a topic lots of people want to know about - Quentin 2014-05-16 06:14
I cant even understand I mean what does this mean "Nothing an author can do can " - Neel 2014-05-16 06:17
Authors can do things (mostly writing different code). None of those things will trigger a tab instead of a window - Quentin 2014-05-16 06:18
The draft specification has now been abandoned - Peter Taylor 2014-12-03 15:00
We can do.. check this http://stackoverflow.com/questions/4907843/open-a-url-in-a-new-tab-using-javascript/30512485#3051248 - Mohammed Safeer 2015-08-13 17:29
Because it's so archaic to respect user preferences on their browsers.. - Alan Machado 2015-08-31 20:09
See Adam Pietrasiak answer below. It has the solution to do this - Clive Paterson 2015-10-28 07:02
@ClivePaterson — No, it doesn't. That might open a new tab or it might open a new window depending on the user preferences. There is still no way to force a new tab over a new window - Quentin 2015-10-28 09:34
@chev opening a tab instead of a window IS simple. you just can't do it with javascript, because the difference between tabs and windows is not something javascript cares about. this is not a problem with the language. it will not be "fixed" even in another decade: it's intentional. the user gets to choose whether links open in new tabs or windows—not you - ell 2016-02-25 19:27
How come the ones that are links seem to work fine but the $window.open does not? Wouldn't the setting be the same or is this JUST for JS - Jackie 2016-04-11 15:15
@Jackie — What makes you think window.open is different - Quentin 2016-04-11 15:40
@Quentin I have selenium tests on both and one seems to be behaving different. The one that appears to be working is a combo of href and target="blank". I am still working on confirming everything but it looks like ng-href and target='blank' works too. But $window.open('url', '_blank') gives me the popup warning in chromedriver - Jackie 2016-04-11 15:48
@Quentin my tests seem to confirm on my chrome ng-href works even when $location gets the warnin - Jackie 2016-04-11 17:10
@Jackie — You seem to be talking about evading popup blockers. That isn't what the question is asking about - Quentin 2016-04-11 21:12
@Quentin I have no 3rd party plugins installled just base chrome. But yeah when I use window open it acts as if it is a new window or popu - Jackie 2016-04-11 23:45
@Quentin rereading I kind of see what you mean I guess mine is a slightly different issue - Jackie 2016-04-11 23:48
@PatrickSzalapski — "This answer will also not keep the fragment" — It won't keep anything. This answer flat out says that what the OP is asking for is impossible. (And hashbang based routing has been largely obsoleted by pushState anyway - Quentin 2016-08-09 15:54
window.open opens in a new tab for me all I did was window.open('myUrl') and it opened in a new tab. However if it didn't open in a new tab I would have been ok with that too so I wasnt as concerned about it - Mike Kellogg 2018-04-28 21:04
@MikeKellogg — "it opened in a new tab" — Then your preferences are set that way. The question is about when they are not. "I would have been ok with that too" — The person asking the question was not - Quentin 2018-04-29 09:04


1407

This is a trick,

function openInNewTab(url) {
  var win = window.open(url, '_blank');
  win.focus();
}

In most cases, this should happen directly in the onclick handler for the link to prevent pop-up blockers, and the default "new window" behavior. You could do it this way, or by adding an event listener to your DOM object.

<div onclick="openInNewTab('www.test.com');">Something To Click On</div>

http://www.tutsplanet.com/open-url-new-tab-using-javascript/

2012-07-08 14:49
by Rinto George
Why does this work? Does it work in all browsers - Mike 2012-08-25 05:26
It works in all major browsers, where tab style is ther - Rinto George 2012-08-26 08:37
@PavelHodek Come on dude, it works like a charm. Tested in chrome & firefox & that is enough for me - gopi1410 2012-10-09 16:28
not working here either, chrome Version 22.0.1229.94 - Sebas 2012-10-14 20:24
Does not work. Got a message at the right of the address bar: Popup blocked. Then I allowed popups. And voilà, it opens in a popup, not a tab! Chrome 22.0.1229.94 on OS X Lion - nalply 2012-10-21 10:28
It works fine for me in Chrome & FF. Make sure any a tags do not have target="_blank" in the - Alex 2012-11-02 09:51
@nalply same result in chrome 23. Demo here: http://d.pr/45CG - Web_Designer 2012-12-18 01:49
Isn't working in Safari 6.0.2 on Mac OS X. In my case/configuration a new tab is opened but does not get focused - rmoestl 2013-01-29 09:11
For Safari (still works in chrome, ff, ie, opera) I found it necessary to do this: var win = window.open(url, '_blank'); win.focus() - Dan 2013-02-22 21:36
not working in chrome. only one link opened in new tab, others opened in different new windows - Saurabh Saxena 2013-03-22 10:50
I think the reason so many people are having issues is because they aren't implementing it properly (though I can't see how.) Tested in vanilla: Chrome, IE, FF, SeaMonkey, Safari, and Opera. Works like a charm - b1nary.atr0phy 2013-04-06 13:55
@b1naryatr0phy Agree with you.. Its working for me. Thanks duke my upvote to your answer : - Dhaval 2013-04-15 14:34
@Dhaval Change the settings in your browsers. Whether it's opened in a tab or window is determined by your browser's settings. There's nothing you can do by calling window.open (or any Javascript) to choose how to open the new window/tab - Ian 2013-04-18 13:55
@b1naryatr0phy That's because you didn't actually test it properly. Change the settings in your browsers. Whether it's opened in a tab or window is determined by your browser's settings. There's nothing you can do by calling window.open (or any Javascript) to choose how to open the new window/tab - Ian 2013-04-18 13:56
Working on Chrome - Windows : - Diego Vieira 2013-06-10 12:16
Opens a new window for me - cwallenpoole 2013-06-11 15:17
Duke - your answer is very close to @venkat-kotra's answer below. Would be nice if you would edit your answer to point out a couple important points in venkat's answer: (1) The window.open statement must be in the click event, (2) if an intermediate ajax query is used, one must use async: false, (3) browser settings may over-ride the desired tab behavior (nothing one can do about this - Brett 2013-06-20 14:11
Didnt work for m - xzdead 2013-08-30 15:39
Works great for me! Chrome 29.0.1547.6 - MissRaphie 2013-09-18 14:19
Chrome 30: works for me and it opens a new tab - Michael J. Calkins 2013-10-23 14:33
popout blocker will go away if you do a synchronous ajax cal - Steve Ng 2013-12-19 13:21
not working... how you vote for this? - Mohammad Shraim 2013-12-26 00:00
Aurora (Firefox), Chrome, and Opera work fine. IE - brings up new tab fine, but doesn't set focus there: Error: Unable to get property 'focus' of undefined or null referenc - Scott 2014-03-18 16:05
Question : I set url without protocol ( for example my.site.com/Controller/Index). As result i get new window (tab) by url such as url of current page (from where i use function OpenInNewTab) plus passed into function url. With protocol window opens by correct link. Why - user2167382 2014-05-15 09:07
@duke Can you offer even a single example of a browser in which using the OP's code, the new page opens in a new window, and with yours, it opens in a new tab? So far, you have not offered any example in which this code works, and others have offered plenty in which (they claim) it fails - Mark Amery 2014-06-19 14:26
very simple, simply add target="_blank" to that form - Musaddiq Khan 2014-10-16 12:45
Thank you. It is 2014 year, and its works fine in firefox,chrome and opera!! IE is not the browser ; - realmag777 2014-12-04 16:26
working fine for me in Chrome 42.0.. although I've configured my browser to open popup windows - sohaiby 2015-05-10 06:46
It is working fine for me (IE11). Thank you, I upvoted the answer.. - Matt 2015-08-19 08:34
var win = window.open(url, '_blank');

the '_blank' isn't necessary, for window.open(), the second parameter is strWindowName, for: A string name for the new window. The name can be used as the target of links and forms using the target attribute of an or

element. The name should not contain any whitespace characters. Note that strWindowName does not specify the title of the new window - hydRAnger 2015-11-18 09:33
This works. I tested it on Chrome and Firefox. Thank - mtchuente 2016-05-04 10:38
Is there any way to make this open a new tab without it being a sandboxed iframe? When I use this I get CORS errors because the document.domain value is not changed as it is opened as an iframe - Ids van der Zee 2017-06-19 11:26
@nalply It is working on Chrome Version 66.0.3359.13 - I am the Most Stupid Person 2018-05-08 09:24
Thanks this was very helpful. To avoid popop blocker open window outside of async call, and pass window to async call to set location.href later - Milan Raval 2018-12-04 15:53


333

window.open() will not open in a new tab if it is not happening on the actual click event. In the example given the URL is being opened on the actual click event. This will work provided the user has appropriate settings in the browser.

<a class="link">Link</a>
<script  type="text/javascript">
     $("a.link").on("click",function(){
         window.open('www.yourdomain.com','_blank');
     });
</script>

Similarly, if you are trying to do an Ajax call within the click function and want to open a window on success, ensure you are doing the Ajax call with the async : false option set.

2012-10-31 13:15
by Venkat Kotra
Would be nice to mark this one as the CORRECT answer. My tests with Chrome v26 (Windows) confirm that if the code is within a button's click handler it opens a new tab and if the code is invoked programmatically, e.g. from the console, then it opens a new window - CyberFonic 2013-04-05 05:26
@PaulBrown Sorry, it's not. It doesn't determine how the new tab/browser is opened. You can't control it from Javascript. It's determined by your browser's settings - Ian 2013-04-18 13:57
@CyberFonic No reason to do that, since it's not the correct answer. It doesn't determine how the new tab/browser is opened. You can't control it from Javascript. It's determined by your browser's settings - Ian 2013-04-18 13:57
@Ian From my testing on browsers with default settings, this answer works in cases where the answers above do not. The accepted answer which says "there is nothing you can do" is only true when the user has changed the default settings - Garfield 2013-04-19 18:46
@PaulBrown This answer is no different from the others. They all say to use window.open. The second parameter being "_blank" doesn't change anything. Therefore there's no difference here. And the fact they claim "window.open() will not open in new tab if it is not happening on actual click event." is wrong as well. Settings in the browser are the reasoning for anything happening, not Javascript cod - Ian 2013-04-19 18:49
@Ian If you test carefully with attention to detail, you will find that there is a difference, as CyberFonic pointed out - Garfield 2013-04-19 18:59
@PaulBrown I don't know why you won't accept the fact that you can't control it. All CyberFonic did was explain/prove that it's yet another inconsistency between browsers, and show that insecure window.open calls differ from secure ones..ON CHROME. I just tested the same thing on Firefox and IE and both open in a new tab. Here's an example so you can test your little heart out: http://jsfiddle.net/gEuMK/ . Why would you endorse a solution that is inconsistent between browsers and only "works" on one, even though you can't control which happens - a real, secure event or a random/insecure one - Ian 2013-04-19 19:25
@Ian I don't need total control. I just want a new tab. As you have shown, this solution gives me what I and many others (including the original question) asked for - Garfield 2013-04-19 20:06
@PaulBrown No, it doesn't. There's no guarantee that a tab will open (from Javascript's point of view). Tabs open for me because my browser's default settings are to open in a tab. It works for you and others because your default settings are probably the same. The question said "How to open a URL in a new tab". This, and all other questions with code, answers "How to open a URL based on the browser's default settings". And to me, the OP wants full control. If they want something to happen, the answer should make it happen. These answers might make it happe - Ian 2013-04-19 20:11
@Ian This solution provides open-in-tab as the default behavior (as your fiddle demonstrates). Granted, the user can override that behavior, but most won't. And if they do, then this solution will respect their choice - Garfield 2013-04-19 20:32
@Ian For sake of clarity, I mentioned this in answer warning about user settings. "This will work provided user has appropriate settings in the browser." I think majority of users don't change browser settings and this answer works for majority of them - Venkat Kotra 2013-04-20 07:23
@Ian and others.I just highlighted the warning - Venkat Kotra 2013-04-20 07:24
The async : false bit just saved me alot of time googleing - Ed Fryed 2013-05-31 06:41
Forgive me if I'm missing something obvious ...but, if you're going to take this approach, and have the user click a link... why bother with the JavaScript at all? Just set target='_blank' on the anchor and be done with it... - Jordan Arseno 2013-08-17 21:35
Could you please write this example in plain JS(vanila js), not with jquery? I agree with you @JordanArsen - Rinto George 2018-05-10 10:26


233

window.open Cannot Reliably Open Popups in a New Tab in All Browsers

Different browsers implement the behavior of window.open in different ways, especially with regard to a user's browser preferences. You cannot expect the same behavior for window.open to be true across all of Internet Explorer, Firefox, and Chrome, because of the different ways in which they handle a user's browser preferences.

For example, Internet Explorer (11) users can choose to open popups in a new window or a new tab, you cannot force Internet Explorer 11 users to open popups in a certain way through window.open, as alluded to in Quentin's answer.

As for Firefox (29) users, using window.open(url, '_blank') depends on their browser's tab preferences, though you can still force them to open popups in a new window by specifying a width and height (see "What About Chrome?" section below).

Demonstration

Go to your browser's settings and configure it to open popups in a new window.

Internet Explorer (11)

Internet Explorer settings dialog 1

Internet Explorer tab settings dialog

Test Page

After setting up Internet Explorer (11) to open popups in a new window as demonstrated above, use the following test page to test window.open:

<!DOCTYPE html>
<html>
  <head>
    <title>Test</title>
  </head>

  <body>
    <button onclick="window.open('https://stackoverflow.com/q/4907843/456814');">
      <code>window.open(url)</code>
    </button>
    <button onclick="window.open('https://stackoverflow.com/q/4907843/456814', '_blank');">
      <code>window.open(url, '_blank')</code>
    </button>
  </body>
</html>

Observe that the popups are opened in a new window, not a new tab.

You can also test those snippets above in Firefox (29) with its tab preference set to new windows, and see the same results.

What About Chrome? It Implements window.open Differently from Internet Explorer (11) and Firefox (29).

I'm not 100% sure, but it looks like Chrome (version 34.0.1847.131 m) does not appear to have any settings that the user can use to choose whether or not to open popups in a new window or a new tab (like Firefox and Internet Explorer have). I checked the Chrome documentation for managing pop-ups, but it didn't mention anything about that sort of thing.

Also, once again, different browsers seem to implement the behavior of window.open differently. In Chrome and Firefox, specifying a width and height will force a popup, even when a user has set Firefox (29) to open new windows in a new tab (as mentioned in the answers to JavaScript open in a new window, not tab):

<!DOCTYPE html>
<html>
  <head>
    <title>Test</title>
  </head>

  <body>
    <button onclick="window.open('https://stackoverflow.com/q/4907843/456814', 'test', 'width=400, height=400');">
      <code>window.open(url)</code>
    </button>
  </body>
</html>

However, the same code snippet above will always open a new tab in Internet Explorer 11 if users set tabs as their browser preferences, not even specifying a width and height will force a new window popup for them.

So the behavior of window.open in Chrome seems to be to open popups in a new tab when used in an onclick event, to open them in new windows when used from the browser console (as noted by other people), and to open them in new windows when specified with a width and a height.

Summary

Different browsers implement the behavior of window.open differently with regard to users' browser preferences. You cannot expect the same behavior for window.open to be true across all of Internet Explorer, Firefox, and Chrome, because of the different ways in which they handle a user's browser preferences.

Additional Reading

2014-05-01 19:42
by NoName
You didnt answer the question, you just proved that window.open is inconsistent - BentOnCoding 2016-01-14 23:04
That is the answer to the question. We can't control this from inside a web page, it's up to the end user and their browser settings - Daniel Beck 2019-01-23 16:57


180

One liner:

Object.assign(document.createElement('a'), { target: '_blank', href: 'URL_HERE'}).click();

It creates a virtual a element, gives it target="_blank" so it opens in new tab, gives it proper url href and then clicks it.

And if you want, based on that you can create some function:

function openInNewTab(href) {
  Object.assign(document.createElement('a'), {
    target: '_blank',
    href,
  }).click();
}

and then you can use it like:

openInNewTab("http://google.com"); 
2015-02-06 20:35
by pie6k
Thank you. Your pure-JS has a missing piece -- as Luke Alderton wrote (see below), you need to attach created element to the document body, in your code it is hanging in the void an at least in Firefox 37 it does not do anything - greenoldman 2015-05-24 06:55
@mcginniwa Any action like this - if not triggered by user action like mouse click will turn popup-blocker. Imagine that you can just open any url with Javascript without user action - that would be quite dangerous. If you put this code inside event like click function - it will work fine - it's the same with all proposed solutions here - pie6k 2015-10-08 12:11
This was my first thought. Probably best considering pop-up blockers I would think - Arg0n 2016-06-16 08:35
You can simplify your code as follows:

$('<a />',{'href': url, 'target', '_blank'}).get(0).click();shaedrich 2017-12-22 17:20

@shaedrich inspired by your snipped I added non-jquery one-liner: Object.assign(document.createElement('a'), { target: '_blank', href: 'URL_HERE'}).click();pie6k 2018-01-05 12:07
That may open in a new tab or a new window as per the user's preferences. The question is asking how to ensure it opens in a new tab and not a new window - Quentin 2018-01-17 07:07
Not working in F - Carlos 2018-02-23 06:20
Not work for Firefo - cw song 2018-12-24 05:17


56

To elaborate Steven Spielberg's answer, I did this in such a case:

$('a').click(function() {
  $(this).attr('target', '_blank');
});

This way, just before the browser will follow the link I'm setting the target attribute, so it will make the link open in a new tab or window (depends on user's settings).

2011-04-05 15:02
by arikfr


56

If you use window.open(url, '_blank'), it will be blocked (popup blocker) on Chrome.

Try this:

$('#myButton').click(function () {
    var redirectWindow = window.open('http://google.com', '_blank');
    redirectWindow.location;
});
2015-05-28 16:43
by Mohammed Safeer
This is exactly what I expected to see as the accepted answer, is there a reason not to use this option? I tested across Chrome, Safari and IE11 and it works fine in those browsers, but no idea about mobile and LTE(IE10 - cloying 2015-06-01 09:46
This might open in a new window. This might open in a new tab. Which it is is not under the control of the site author. This code is the same as the code in the question which the OP said didn't work for them - Quentin 2015-08-13 18:33
But in this question, they do not mention about site author. Only want to open a url in new window or new tab. This is browser dependent. We do not need to bother about author. Please check that fiddle. It is workin - Mohammed Safeer 2015-08-13 19:01
I really think this could be a good solution since it works as expected opening a new tab and also works well even with ad-blockers or pop-up blockers turned o - LucioB 2016-12-16 15:23
This isnt working both in FF and chrome - Faisal Mq 2017-02-08 13:13
It is found that, it didn't work on js fiddle and plunker, but works when you create an html file. It is because js fiddle, output is displayed on iframe, so new window is blocked because of the request was made in a sandboxed frame whose 'allow-popups' permission is not setMohammed Safeer 2017-02-08 20:08


33

I use the following and it works very well!!!

window.open(url, '_blank').focus();
2016-03-11 11:51
by Ezequiel García
causes popup-blocker to appea - NoName 2016-03-24 21:42
-1. This is wrong. The call to .focus() does not affect whether the new page is opened in a window or a tab since it takes place after the .open() call, and window.open(url, '_blank') is literally exactly the code that the question asker included in the question and which he and many other posters here have explained does not work - Mark Amery 2016-05-15 22:04
No. That may open in a new tab or a new window as per the user's preferences. The question is asking how to ensure it opens in a new tab and not a new window - Quentin 2018-01-17 07:09


18

An interesting fact is that the new tab can not be opened if the action is not invoked by the user (clicking a button or something) or if it is asynchronous, for example, this will NOT open in new tab:

$.ajax({
    url: "url",
    type: "POST",
    success: function() {
        window.open('url', '_blank');              
    }
});

But this may open in a new tab, depending on browser settings:

$.ajax({
    url: "url",
    type: "POST",
    async: false,
    success: function() {
        window.open('url', '_blank');              
    }
});
2013-10-18 12:35
by karaxuna
Found this useful, so at least some browsers (with default settings) would open the tab without the popup blocker warning - Populus 2013-11-05 19:19
This is getting blocked as a popup in Firefox 28, Chrome 34b, and Safari 7.0.2, all stock settings. : - Steve Meisner 2014-03-27 13:39
+1 This was exactly my problem async: false helps but it is dangerou - Mina Gabriel 2014-10-01 15:37
Is there a workaround to this - Struggler 2015-01-09 19:01
"the new tab can not be opened if the action is not invoked by the user (clicking a button or something) or if it is asynchronous" - true of Chrome, but not true of all browsers. Save <script>open('http://google.com')</script> to a .html file and open it in a fresh install of a recent version of Firefox; you will observe that Firefox happily opens Google in a new tab (perhaps after you tell it to allow popups), not a new window - Mark Amery 2016-05-15 21:53


15

I think that you can't control this. If the user had setup their browser to open links in a new window, you can't force this to open links in a new tab.

JavaScript open in a new window, not tab

2011-02-05 15:55
by Fran Verona


13

Just omitting [strWindowFeatures] parameters will open a new tab, UNLESS the browser setting overrides (browser setting trumps JavaScript).

New window

var myWin = window.open(strUrl, strWindowName, [strWindowFeatures]);

New tab

var myWin = window.open(strUrl, strWindowName);

-- or --

var myWin = window.open(strUrl);
2014-11-18 09:14
by MannyC
"Just omit [strWindowFeatures] parameters" — The code in the question already does does that. "UNLESS browser setting overrides" — The point of the question is to counter the browser setting - Quentin 2016-06-10 09:15


11

(function(a){
document.body.appendChild(a);
a.setAttribute('href', location.href);
a.dispatchEvent((function(e){
    e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, true, false, false, false, 0, null);
    return e
}(document.createEvent('MouseEvents'))))}(document.createElement('a')))
2013-10-19 09:27
by spirinvladimir
This is the only solution that worked for me while trying to open a new tab from a custom JS function. I would prefer to create the element inside the function, but it's ok - chipairon 2013-11-22 11:28
Doesn't open a window or a tab for me - Paul Tomblin 2014-01-30 00:34
In Chrome Version 32.0.1700.102, this code blocked as pop-up - spirinvladimir 2014-02-01 17:21


11

You can use a trick with form:

$(function () {
    $('#btn').click(function () {
        openNewTab("http://stackoverflow.com")
        return false;
    });
});

function openNewTab(link) {
    var frm = $('<form   method="get" action="' + link + '" target="_blank"></form>')
    $("body").append(frm);
    frm.submit().remove();
}

jsFiddle demo

2016-01-20 15:02
by CodeNinja
If you go by this method, make sure the url doesn't have query params because they'll be skipped by form submit. One solution is to embed hidden input elements inside the form element that have name as key & value as value for all the parameters inside query params. And then submit the for - Mudassir Ali 2016-02-16 12:49
this can be done more simply with an a tag instead of a form, and using the jQuery .click() method to "submit" it. check my answerNoName 2016-03-24 21:37
Nope, doesn't work. Tried swapping Firefox to default to opening pages in new windows via preferences, then pasted this exact code into a page with a <button id='btn'>click me</button>, clicked the button, and... got a new window, not a new tab. Can you specify any circumstance whatsoever in which a form submit would open in a new tab when a simple window.open would open in a new window? I don't believe any such circumstance exists - Mark Amery 2016-05-15 22:01


10

This has nothing to do with browser settings if you are trying to open a new tab from a custom function.

In this page, open a JavaScript console and type:

document.getElementById("nav-questions").setAttribute("target", "_blank");
document.getElementById("nav-questions").click();

And it will try to open a popup regardless of your settings, because the 'click' comes from a custom action.

In order to behave like an actual 'mouse click' on a link, you need to follow @spirinvladimir's advice and really create it:

document.getElementById("nav-questions").setAttribute("target", "_blank");
document.getElementById("nav-questions").dispatchEvent((function(e){
  e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,
                    false, false, false, false, 0, null);
  return e
}(document.createEvent('MouseEvents'))));

Here is a complete example (do not try it on jsFiddle or similar online editors, as it will not let you redirect to external pages from there):

<!DOCTYPE html>
<html>
<head>
  <style>
    #firing_div {
      margin-top: 15px;
      width: 250px;
      border: 1px solid blue;
      text-align: center;
    }
  </style>
</head>
<body>
  <a id="my_link" href="http://www.google.com"> Go to Google </a>
  <div id="firing_div"> Click me to trigger custom click </div>
</body>
<script>
  function fire_custom_click() {
    alert("firing click!");
    document.getElementById("my_link").dispatchEvent((function(e){
      e.initMouseEvent("click", true, true, window, /* type, canBubble, cancelable, view */
            0, 0, 0, 0, 0,              /* detail, screenX, screenY, clientX, clientY */
            false, false, false, false, /* ctrlKey, altKey, shiftKey, metaKey */
            0, null);                   /* button, relatedTarget */
      return e
    }(document.createEvent('MouseEvents'))));
  }
  document.getElementById("firing_div").onclick = fire_custom_click;
</script>
</html>
2013-11-22 11:46
by chipairon
Doesn't seem to work for me - it's not opening either a window or a tab when applied to a tag - Paul Tomblin 2014-01-30 00:31
@PaulTomblin I have updated my answer with a complete example that should get you going - chipairon 2014-01-30 13:26
I ended up going to a different solution where I do w = window.open("placeholder"); $.ajax(...ajax call that returns the url...) success (...w.location = data.url...) as per http://theandystratton.com/2012/how-to-bypass-google-chromes-javascript-popup-blocke - Paul Tomblin 2014-01-30 14:19
@FahadAbidJanjua It is absolutely not correct. It still depends on browser settings. There is nothing in HTML or Javascript specifications that declares that a "custom action" must open in a popup rather than a tab. Indeed, none of the browsers on my current machine display this behavior - nmclean 2014-04-07 15:13
Doesn't work for me in Chrome - Ashley Davis 2014-04-08 11:45
dispatchEvent may not work in all browsers, check my answerNoName 2016-03-24 21:45


3

Or you could just create a link element and click it...

var evLink = document.createElement('a');
evLink.href = 'http://' + strUrl;
evLink.target = '_blank';
document.body.appendChild(evLink);
evLink.click();
// Now delete it
evLink.parentNode.removeChild(evLink);

This shouldn't be blocked by any popup blockers... Hopefully.

2013-11-06 17:22
by Luke Alderton
Tested in chrome and it does block the popup - King Julien 2013-11-27 08:17
This method doesn't work in safari and ie8 : - Pragnesh Karia 2014-02-03 14:09
Finally! Million thanks, it works (Firefox 37 on openSUSE 13.2) - greenoldman 2015-05-24 06:53


2

There is an answer to this question and it is not no.

I found an easy work around:

Step 1: Create an invisible link:

<a id="yourId" href="yourlink.html" target="_blank" style="display: none;"></a>

Step 2: Click on that link programmatically:

document.getElementById("yourId").click();

Here you go! Works a charm for me.

2018-09-21 19:37
by ALZlper
This may open in a new tab. It may open in a new window. It does whatever the user's preferences say. It does not override them, which is what the question is asking - Quentin 2018-10-23 11:10


1

If it is something that you are just trying to load onto the element, try using this. On page load it will add your target property with the correct attribute.

$(your_element_here).prop('target', '_blank');

2018-05-25 23:16
by HeroZero
No. That may open in a new tab or a new window as per the user's preferences. The question is asking how to ensure it opens in a new tab and not a new window - Quentin 2018-07-18 23:51


0

How about creating an <a> with _blank as target attribute value and the url as href, with style display:hidden with a a children element? Then add to the DOM and then trigger the click event on a children element.

UPDATE

That doesn't work. The browser prevents the default behaviour. It could be triggered programmatically, but it doesn't follow the default behaviour.

Check and see for yourself: http://jsfiddle.net/4S4ET/

2014-04-11 19:27
by Victor
Triggers popup blocker in Chrome 46 - t.mikael.d 2015-10-28 18:13


-1

This might be a hack, but in Firefox if you specify a third parameter, 'fullscreen=yes', it opens a fresh new window.

For example,

<a href="#" onclick="window.open('MyPDF.pdf', '_blank', 'fullscreen=yes'); return false;">MyPDF</a>

It seems to actually override the browser settings.

2014-09-20 01:27
by Kunal
Opening a new window instead of a tab is the opposite of what the question is asking for - Quentin 2016-04-04 10:05


-1

Opening a new tab from within a Firefox (Mozilla) extension goes like this:

gBrowser.selectedTab = gBrowser.addTab("http://example.com");
2014-09-23 16:32
by Smile4ever


-1

This way is similar to the above solution but implemented differently

.social_icon -> some class with CSS

 <div class="social_icon" id="SOME_ID" data-url="SOME_URL"></div>


 $('.social_icon').click(function(){

        var url = $(this).attr('data-url');
        var win = window.open(url, '_blank');  ///similar to above solution
        win.focus();
   });
2015-05-27 16:09
by CG_DEV


-1

this work for me, just prevent the event, add the url to an <a> tag then trigger the click event on that tag.

Js
$('.myBtn').on('click', function(event) {
        event.preventDefault();
        $(this).attr('href',"http://someurl.com");
        $(this).trigger('click');
});
HTML
<a href="#" class="myBtn" target="_blank">Go</a>
2017-11-02 02:23
by Carlos Salazar
No. That may open in a new tab or a new window as per the user's preferences. The question is asking how to ensure it opens in a new tab and not a new window - Quentin 2018-01-17 07:07


-4

I'm going to agree somewhat with the person who wrote (paraphrased here): "For a link in an existing web page, the browser will always open the link in a new tab if the new page is part of the same web site as the existing web page." For me, at least, this "general rule" works in Chrome, Firefox, Opera, IE, Safari, SeaMonkey, and Konqueror.

Anyway, there is a less complicated way to take advantage of what the other person presented. Assuming we are talking about your own web site ("thissite.com" below), where you want to control what the browser does, then, below, you want "specialpage.htm" to be EMPTY, no HTML at all in it (saves time sending data from the server!).

 var wnd, URL;  //global variables

 //specifying "_blank" in window.open() is SUPPOSED to keep the new page from replacing the existing page
 wnd = window.open("http://www.thissite.com/specialpage.htm", "_blank"); //get reference to just-opened page
 //if the "general rule" above is true, a new tab should have been opened.
 URL = "http://www.someothersite.com/desiredpage.htm";  //ultimate destination
 setTimeout(gotoURL(),200);  //wait 1/5 of a second; give browser time to create tab/window for empty page


 function gotoURL()
 { wnd.open(URL, "_self");  //replace the blank page, in the tab, with the desired page
   wnd.focus();             //when browser not set to automatically show newly-opened page, this MAY work
 }
2014-06-22 15:33
by vernonner3voltazim


-4

Specify a default target for all hyperlinks and forms on a page (non-JavaScript):

<head>
  <base target="_blank">
</head>
2016-08-14 00:43
by rhodesit
No. That may open in a new tab or a new window as per the user's preferences. The question is asking how to ensure it opens in a new tab and not a new window - Quentin 2016-09-14 07:41


-6

If you only want to open the external links (links that go to other sites) then this bit of JavaScript/jQuery works well:

$(function(){
    var hostname = window.location.hostname.replace('www.', '');
    $('a').each(function(){
        var link_host = $(this).attr('hostname').replace('www.', '');
        if (link_host !== hostname) {
            $(this).attr('target', '_blank');
        }
    });
});
2013-08-23 21:00
by Michael
This response is not suitable for this question.BUT, this is very useful think! Thank you for your idea - Nuri Akman 2014-11-27 10:38


-10

The browser will always open the link in a new tab if the link is on the same domain (on the same website). If the link is on some other domain it will open it in a new tab/window, depending on browser settings.

So, according to this, we can use:

<a class="my-link" href="http://www.mywebsite.com" rel="http://www.otherwebsite.com">new tab</a>

And add some jQuery code:

jQuery(document).ready(function () {
    jQuery(".my-link").on("click",function(){
        var w = window.open('http://www.mywebsite.com','_blank');
        w.focus();
        w.location.href = jQuery(this).attr('rel');
        return false;
    });
});

So, first open new window on same website with _blank target (it will open it in new tab), and then open your desired website inside that new window.

2013-08-12 11:58
by loshMiS


-10

Somehow a website can do it. (I don't have the time to extract it from this mess, but this is the code)

if (!Array.prototype.indexOf)
    Array.prototype.indexOf = function(searchElement, fromIndex) {
        if (this === undefined || this === null)
            throw new TypeError('"this" is null or not defined');
        var length = this.length >>> 0;
        fromIndex = +fromIndex || 0;
        if (Math.abs(fromIndex) === Infinity)
            fromIndex = 0;
        if (fromIndex < 0) {
            fromIndex += length;
            if (fromIndex < 0)
                fromIndex = 0
        }
        for (; fromIndex < length; fromIndex++)
            if (this[fromIndex] === searchElement)
                return fromIndex;
        return -1
    };
(function Popunder(options) {
    var _parent, popunder, posX, posY, cookieName, cookie, browser, numberOfTimes, expires = -1,
        wrapping, url = "",
        size, frequency, mobilePopupDisabled = options.mobilePopupDisabled;
    if (this instanceof Popunder === false)
        return new Popunder(options);
    try {
        _parent = top != self && typeof top.document.location.toString() === "string" ? top : self
    } catch (e) {
        _parent = self
    }
    cookieName = "adk2_popunder";
    popunder = null;
    browser = function() {
        var n = navigator.userAgent.toLowerCase(),
            b = {
                webkit: /webkit/.test(n),
                mozilla: /mozilla/.test(n) && !/(compatible|webkit)/.test(n),
                chrome: /chrome/.test(n),
                msie: /msie/.test(n) && !/opera/.test(n),
                firefox: /firefox/.test(n),
                safari: /safari/.test(n) && !/chrome/.test(n),
                opera: /opera/.test(n)
            };
        b.version = b.safari ? (n.match(/.+(?:ri)[\/: ]([\d.]+)/) || [])[1] : (n.match(/.+(?:ox|me|ra|ie)[\/:]([\d.]+)/) || [])[1];
        return b
    }();
    initOptions(options);

    function initOptions(options) {
        options = options || {};
        if (options.wrapping)
            wrapping = options.wrapping;
        else {
            options.serverdomain = options.serverdomain || "ads.adk2.com";
            options.size = options.size || "800x600";
            options.ci = "3";
            var arr = [],
                excluded = ["serverdomain", "numOfTimes", "duration", "period"];
            for (var p in options)
                options.hasOwnProperty(p) && options[p].toString() && excluded.indexOf(p) === -1 && arr.push(p + "=" + encodeURIComponent(options[p]));
            url = "http://" + options.serverdomain + "/player.html?rt=popunder&" + arr.join("&")
        }
        if (options.size) {
            size = options.size.split("x");
            options.width = size[0];
            options.height = size[1]
        }
        if (options.frequency) {
            frequency = /([0-9]+)\/([0-9]+)(\w)/.exec(options.frequency);
            options.numOfTimes = +frequency[1];
            options.duration = +frequency[2];
            options.period = ({
                m: "minute",
                h: "hour",
                d: "day"
            })[frequency[3].toLowerCase()]
        }
        if (options.period)
            switch (options.period.toLowerCase()) {
                case "minute":
                    expires = options.duration * 60 * 1e3;
                    break;
                case "hour":
                    expires = options.duration * 60 * 60 * 1e3;
                    break;
                case "day":
                    expires = options.duration * 24 * 60 * 60 * 1e3
            }
        posX = typeof options.left != "undefined" ? options.left.toString() : window.screenX;
        posY = typeof options.top != "undefined" ? options.top.toString() : window.screenY;
        numberOfTimes = options.numOfTimes
    }

    function getCookie(name) {
        try {
            var parts = document.cookie.split(name + "=");
            if (parts.length == 2)
                return unescape(parts.pop().split(";").shift()).split("|")
        } catch (err) {}
    }

    function setCookie(value, expiresDate) {
        expiresDate = cookie[1] || expiresDate.toGMTString();
        document.cookie = cookieName + "=" + escape(value + "|" + expiresDate) + ";expires=" + expiresDate + ";path=/"
    }

    function addEvent(listenerEvent) {
        if (document.addEventListener)
            document.addEventListener("click", listenerEvent, false);
        else
            document.attachEvent("onclick", listenerEvent)
    }

    function removeEvent(listenerEvent) {
        if (document.removeEventListener)
            document.removeEventListener("click", listenerEvent, false);
        else
            document.detachEvent("onclick", listenerEvent)
    }

    function isCapped() {
        cookie = getCookie(cookieName) || [];
        return !!numberOfTimes && +numberOfTimes <= +cookie[0]
    }

    function pop() {
        var features = "type=fullWindow, fullscreen, scrollbars=yes",
            listenerEvent = function() {
                var now, next;
                if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent))
                    if (mobilePopupDisabled)
                        return;
                if (isCapped())
                    return;
                if (browser.chrome && parseInt(browser.version.split(".")[0], 10) > 30 && adParams.openNewTab) {
                    now = new Date;
                    next = new Date(now.setTime(now.getTime() + expires));
                    setCookie((+cookie[0] || 0) + 1, next);
                    removeEvent(listenerEvent);
                    window.open("javascript:window.focus()", "_self", "");
                    simulateClick(url);
                    popunder = null
                } else
                    popunder = _parent.window.open(url, Math.random().toString(36).substring(7), features);
                if (wrapping) {
                    popunder.document.write("<html><head></head><body>" + unescape(wrapping || "") + "</body></html>");
                    popunder.document.body.style.margin = 0
                }
                if (popunder) {
                    now = new Date;
                    next = new Date(now.setTime(now.getTime() + expires));
                    setCookie((+cookie[0] || 0) + 1, next);
                    moveUnder();
                    removeEvent(listenerEvent)
                }
            };
        addEvent(listenerEvent)
    }
    var simulateClick = function(url) {
        var a = document.createElement("a"),
            u = !url ? "data:text/html,<script>window.close();<\/script>;" : url,
            evt = document.createEvent("MouseEvents");
        a.href = u;
        document.body.appendChild(a);
        evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, true, false, false, true, 0, null);
        a.dispatchEvent(evt);
        a.parentNode.removeChild(a)
    };

    function moveUnder() {
        try {
            popunder.blur();
            popunder.opener.window.focus();
            window.self.window.focus();
            window.focus();
            if (browser.firefox)
                openCloseWindow();
            else if (browser.webkit)
                openCloseTab();
            else
                browser.msie && setTimeout(function() {
                    popunder.blur();
                    popunder.opener.window.focus();
                    window.self.window.focus();
                    window.focus()
                }, 1e3)
        } catch (e) {}
    }

    function openCloseWindow() {
        var tmp = popunder.window.open("about:blank");
        tmp.focus();
        tmp.close();
        setTimeout(function() {
            try {
                tmp = popunder.window.open("about:blank");
                tmp.focus();
                tmp.close()
            } catch (e) {}
        }, 1)
    }

    function openCloseTab() {
        var ghost = document.createElement("a"),
            clk;
        document.getElementsByTagName("body")[0].appendChild(ghost);
        clk = document.createEvent("MouseEvents");
        clk.initMouseEvent("click", false, true, window, 0, 0, 0, 0, 0, true, false, false, true, 0, null);
        ghost.dispatchEvent(clk);
        ghost.parentNode.removeChild(ghost);
        window.open("about:blank", "PopHelper").close()
    }
    pop()
})(adParams)
2014-09-05 13:40
by Totty.js
Please add context before just throwing all of this code - chntgomez 2015-05-11 23:49
Ads