vote up 9 vote down star
8

I know that most links should be left up to the end-user to decide how to open, but we can't deny that there are times you almost 'have to' force into a new window (for example to maintain data in a form on the current page).

What I'd like to know is what the consensus is on the 'best' way to open a link in a new browser window.

I know that <a href="url" target="_blank"> is out. I also know that <a href="#" onclick="window.open(url);"> isn't ideal for a variety of reasons. I've also tried to completely replace anchors with something like <span onclick="window.open(url);"> and then style the SPAN to look like a link.

One solution I'm leaning towards is <a href="url" rel="external"> and using JavaScript to set all targets to '_blank' on those anchors marked 'external'.

Are there any other ideas? What's better? I'm looking for the most XHTML-compliant and easiest way to do this.

UPDATE: I say target="_blank" is a no no, because I've read in several places that the target attribute is going to be phased out of XHTML.

flag

69% accept rate
I did search for similar questions/answers before, but didn't find anything to answer my question. – Kon M Oct 24 '08 at 13:09
Why is target="_blank" a no no? – David Arno Oct 24 '08 at 13:10
1  
@Ikke consider this: "normal link" [new] clicking on the new will open in a new window. Decided by the user, provided by the developer. – Gene Oct 24 '08 at 13:16
all bad. You should go for unobtrusive script. What happens with a non js browser? How can they use your site/application? – redsquare Oct 24 '08 at 13:20
"Is going to be phased out of XHTML" -- sure. For the past, what, 6 years? Nothing is "phased out" until browsers stop supporting it, which they won't do until people stop writing sites with it. Which means never. :-) – Rahul Oct 24 '08 at 14:41

10 Answers

vote up 14 vote down check

I am using the last method you proposed. I add rel="external" or something similar and then use jQuery to iterate through all links and assign them a click handler:

$(document).ready(function() {
  $('a[rel=external]').click(function(){
    window.open($(this).attr('href'));
    return false; 
  });
});

I find this the best method because:

  • it is very clear semantically: you have a link to an external resource
  • it is standards-compliant
  • it degrades gracefully (you have a very simple link with regular href attribute)
  • it still allows user to middle-click the link and open it in new tab if they wish
link|flag
Yes, this seems to be my most recently favorite approach. Just wondering if anyone came up with any other slick way. – Kon M Oct 24 '08 at 13:28
Having to jump through these hoops is probably why the target attribute reappears in XHTML 2.0. – tvanfosson Oct 24 '08 at 13:37
@tvanfosson a small correction: it reappears in XHTML5, not XHTML 2.0. XHTML5 is XML serialization of HTML5, while XHTML 2.0 is improvement on XHTML 1.1. Anyhow, rel="external" improves semantic, while target="_blank" is a behaviour directive (which should be left to JS) – Damir Oct 24 '08 at 13:45
Agreed with porneL, but the basic idea is good - use of rel=external. – Kon M Oct 31 '08 at 13:12
vote up 8 vote down

Why is target="_blank" a bad idea?

It's supposed to do exactly what you want.

edit: (see comments) point taken, but I do think that using javascript to do such a task can lead to having some people quite upset (those who middle click to open on a new window by habit, and those who use a NoScript extension)

link|flag
It will cause the XHTML validator to show an error, because it has been removed from the standard. Personally, I think that was a bad move. Now people come up with sh*t like "<span onclick>" just to get around it and still be "valid". – Tomalak Oct 24 '08 at 13:15
In XHTML 1.0 Strict and XHTML >1.1 "target" is not allowed attribute of "a" tag. – Damir Oct 24 '08 at 13:15
It think the problem is with Tabbed browsers. It is not clear whether this means open a new browser, open a new tab or open a sub window of the existing browser. – Martin Brown Oct 24 '08 at 13:18
Yes, standards... so this is totally not the answer. And I'm shocked there are so many people who upvoted this. – Kon M Oct 24 '08 at 13:20
1  
I've never cared and I don't see myself caring about standards anytime soon because of crap like this. Oh no, we've decided target is no good, so change everything! Well, my target attributes are staying put, and that's that. – Paolo Bergantino Oct 25 '08 at 7:21
show 9 more comments
vote up 4 vote down

Please, don't force opening a link in a new window.

Reasons against it:

  • It infringes the rule of the least astonishment.
  • The back-button don't work and the user not possibly knows why.
  • What happen in tabbed browsers? New tab or new window? And whichever happens, is it what you wants, if you mix tabs and windows?

The reason I always hear in favor of opening a new window is that the user will not leave the site. But be sure, I will never come back to a site that annoys me. And if the site takes away control from me, that is a big annoyance.

A way may be, that you give two links, one is normal, the other opens it in a new window. Add the second with a little symbol after the normal link. This way users of your site stay in control of which link they want to click on.

link|flag
vote up 2 vote down

Perhaps I'm misunderstanding something but why don't you want to use target="_blank"? That's the way I would do it. If you're looking for the most compatible, then any sort of JavaScript would be out as you can't be sure that the client has JS enabled.

link|flag
You're right about the JS being enabled being a requirement. I think though that rel=external is an unobtrusive solution, because it's XHTML-compliant and forces an open in a different window only if JS is enabled. – Kon M Oct 24 '08 at 13:23
For my in house IT application, certain form pages need to be created as new tabs. In Firefox they kept overwriting each other because I gave them a name, but this _blank page name allowed me to create more than one as needed all in their own tabs. So thanks for the tip. – Tony Peterson Apr 3 at 13:00
vote up 0 vote down

I say target="_blank" is a no no, because I've read in several places that the target attribute is going to be phased out of XHTML.

link|flag
You've missed the point. target=_blank was removed not because method was wrong, but because goal was wrong. By trying to reach the same goal using other method you're still doing wrong thing against intent of the standard. Don't open new windows. If you want to open them anyway, use target=_blank. – porneL Oct 29 '08 at 0:27
vote up 0 vote down

If I'm on a form page and clicking on a moreinfo.html link (for example) causes me to lose data unless I open it in a new tab/window, just tell me.

You can trick me in to opening a new tab/window with window.open() or target="_blank", but I might have targets and pop-ups disabled. If JS, targets and pop-ups are required for you to trick me into opening a new window/tab, tell me before I get started on the form.

Or, make links to another page a form request, so that when the visitor submits, the current form data is saved so they can continue from last time, if possible.

link|flag
It's not always under developer's control how the page should behave. I can't simply introduce 'helper' messages/comments on a large pharmaceutical firm's website. – Kon M Oct 24 '08 at 14:42
True. FWIW, I see lots of sites that just use a javascript URI in the href to open a new window. Then, when JS is off, the link just doesn't work. Of course, target="_blank" will work just as good and will work with JS off. It may not validate, but it'll work, which is more important. – Shadow2531 Oct 25 '08 at 2:28
vote up 0 vote down

Here is a plugin I wrote for jQuery

 (function($){  
  $.fn.newWindow = function(options) {       
    var defaults = {
    	titleText: 'Link opens in a new window'		
    };

    var options = $.extend(defaults, options);

     return this.each(function() {  
       var obj = $(this);

       if (options.titleText) {    	   
    	   if (obj.attr('title')) {
                     var newTitle = obj.attr('title') + ' (' 
                                                + options.titleText + ')';
    	   } else {
                    var newTitle = options.titleText;
    	   };    		   
    	   obj.attr('title', newTitle);    		   
       };    	   

       obj.click(function(event) {
       	  event.preventDefault();  
    	  var newBlankWindow = window.open(obj.attr('href'), '_blank');
    	  newBlankWindow.focus();
    	});     
       });    
  };  
 })(jQuery);

Example Usage

$('a[rel=external]').newWindow();

You can also change, or remove the title text, by passing in some JSON options

Example to change title text:

$('a[rel=external]').newWindow( { titleText: 'This is a new window link!' } );

Example to remove it alltogether

$('a[rel=external]').newWindow( { titleText: '' } );
link|flag
vote up -1 vote down
<a href="http://www.google.com" onclick="window.open(this.href); return false">

This will still open the link (albeit in the same window) if the user has JS disabled. Otherwise it works exactly like target=blank, and it's easy to use as you just have to append the onclick function (perhaps by using JQuery) to all normal tags.

link|flag
But surely you wouldn't want to put such an onclick handler on every link on your site that requires it be opened in a new window/tab. – Kon M Oct 24 '08 at 14:00
vote up -1 vote down

If you use any flavor of strict doctype or the coming real xhtml-flavors, target isn't allowed ...

Using transitional, whatever being HTML4.01 or XHTML1, you can use Damirs solution, though it fails to implement the windowName-property which is necessary in window.open():

In plain html:

<a href="..." target="_blank" onclick="window.open(this.href, 'newWin'); return false;">link</a>

If however you use one of the strict doctypes your only way of opening links would be to use this solution without the target-attribute ...

-- by the way, the number of non-js-browsers is often miscalculated, looking up the counters numbers refer very different numbers, and I'm wondering how many of those non-js-browsers is crawlers and the like !-)

link|flag
I deactivate js on "some" websites ;) – Luk Oct 24 '08 at 15:57
using name for window in window.open is very annoying - it will unexpectedly replace content of another window (it's problematic when same name is used for more than one link on the page) – porneL Oct 29 '08 at 0:28
But it is mandatory, so illegal code will be the result if you miss it ... – roenving Oct 29 '08 at 6:54
-- amd most browsers accept '_blank' as window-name to open a new browser-window (not all !-) – roenving Oct 29 '08 at 21:15
I haven't seen browser that doesn't accept _blank for window name. If you want to support such browser, you could use random name. – porneL Nov 1 '08 at 20:06
vote up -1 vote down
<a href="http://some.website.com/" onclick="return !window.open( this.href );">link text</a>

Details are described in my answer to another question.

link|flag

Your Answer

Get an OpenID
or

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