Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an 'Open' button that 'calculates' a link that should be opened in a new tab. I try to use:

window.open(url, '_blank');

But that opens a new window.

I also tried the following method:

<form id="oform" name="oform" action="" method="post" target="_blank">
</form>

...

document.getElementById("oform").action = url;
document.getElementById("oform").submit();

Still, a new window is opened, instead of a new tab.

When using simple <a href...> with target='blank', the link is opened in a new tab.

Is there a solution?

share|improve this question
1  
what browser are you using? – VAShhh Jun 9 '11 at 16:19
In Chrome a <form target="_blank"> opens in a new tab when submitted, so it depends on the browser. – pimvdb Jun 9 '11 at 16:21
i use chrome, and yet it opens in new window instead of new tab – Erik Sapir Jun 9 '11 at 16:22

4 Answers

CSS3 supports "open in new tab", by the property

target-new: window | tab | none;

See this

Otherwise, you can use the browser properties to force windows to open in a new tab.

EDIT: It does not seem to be supported by any browser currently. This seems to work in firefox

<a href="some url" target="_newtab">content of the anchor</a>

Else, use this method to resize window immediately, to ensure that popup blockers do not kill your popup

share|improve this answer
not sure i understand how to use it – Erik Sapir Jun 9 '11 at 16:27
3  
According to w3schools this property is not yet supported in the Big 5 browsers. – psema4 Jun 9 '11 at 16:27
@Erik It will be a while before these browsers start supporting that. For now, all you can do is change the about:config in firefox, to force that behavior. – DarkCthulhu Jun 9 '11 at 16:31
but how some sites manage to do that? – Erik Sapir Jun 9 '11 at 16:32
This supposedly works in firefox <a href="some url" target="_newtab">content of the anchor</a> – DarkCthulhu Jun 9 '11 at 16:33
show 3 more comments

Other than the CSS3 target-new option @anirudh4444 mentioned, you can't and mostly importantly probably shouldn't. You are trying to control the user's experience, when this should most likely be left up to the user.

share|improve this answer
I know some sites in which clicking a 'Login' button opens a new tab – Erik Sapir Jun 9 '11 at 16:28
2  
Does that make it right? – Kon Jun 9 '11 at 16:39
Many of the browsers block pop-ups. I want the link to be opened in new tab so it would not be blocked – Erik Sapir Jun 9 '11 at 16:41
I'm not sure that will stop it from being blocked. There are pop-up blockers that also prevent new tabs from spawning. Your best bet (taking user experience into consideration) is to do a lightbox/modal effect without trying to manipulate the physical browser window/tab collection. That's just my two cents. – Kon Jun 9 '11 at 16:46
If you're worried about your window being "blocked", don't be. If a user clicks on a normal link, the browser will not block that window. If you are using Javascript to open this new link, then you might have a problem. – Wex Jun 9 '11 at 16:49
show 1 more comment

The following works in Chrome:

<script>
    function buildAndGo() {
        var aEl = document.getElementById('missingLink');
        aEl.href = "#" + resultOfSomeCalculation();

        var e = document.createEvent('MouseEvents');
        e.initEvent( 'click', true, true );

        aEl.dispatchEvent(e);
    }
</script>
...
<button onclick="buildAndGo()">Do it</button>
<a href="#" id="missingLink" target="_blank" style="visibility: hidden;"></a>

Working from the following sources to try and get an IE version working: Selenium BrowserBot, YUI User Action

share|improve this answer

Your form has target="_blank" (including a leading underscore) while your simple link has the target='blank' without the leading underscore. The "_blank" is a reserved word specifying a particular action, but "blank" is the name of a specific, possibly new, window. That's why you're getting different results. Both are pop-ups, but different types.

Each user has ultimate control about whether a pop-up should open a new window or a new tab. There's nothing you can do about it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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