<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Where&#8217;s my target=&#8221;_tab&#8221;?</title>
	<atom:link href="http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/feed/" rel="self" type="application/rss+xml" />
	<link>http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/</link>
	<description>76design&#039;s blog</description>
	<lastBuildDate>Fri, 26 Feb 2010 22:30:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Jason</title>
		<link>http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/comment-page-1/#comment-43798</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 10 Jan 2007 17:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://76design.ca/shiftcontrol/index.php/2006/12/21/wheres-my-target_tab/#comment-43798</guid>
		<description>I agree with Francois. Target=&quot;&quot; attributes are no longer support and can be very frustrating for users. Users can do this themselves if they want it.

Often it&#039;s used so that the user &quot;doesn&#039;t leave the web page&quot;. But since a new window is opening they&#039;re attention is leaving, so for all intensive purposes they are leaving.

Add to that if you&#039;re using a strict doc type you can&#039;t use target attributes at all.

So here&#039;s another option.

Use the rel=&quot;&quot; attribute.

&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;

and then:

$(document).ready(function() {
$(&quot;a[@rel=&#039;external&#039;]&quot;).addClass(&quot;external&quot;).
.click(function() { window.open($(this).href); return false; });
});

This will add an &quot;external&quot; class to the link, which you can style and add visual ques that the link will open a new window.

But I would strongly advise against forcing links to open in new windows or tabs. Any kind of unanticipated action is bad usability.</description>
		<content:encoded><![CDATA[<p>I agree with Francois. Target=&#8221;" attributes are no longer support and can be very frustrating for users. Users can do this themselves if they want it.</p>
<p>Often it&#8217;s used so that the user &#8220;doesn&#8217;t leave the web page&#8221;. But since a new window is opening they&#8217;re attention is leaving, so for all intensive purposes they are leaving.</p>
<p>Add to that if you&#8217;re using a strict doc type you can&#8217;t use target attributes at all.</p>
<p>So here&#8217;s another option.</p>
<p>Use the rel=&#8221;" attribute.</p>
<p><a href="#" rel="nofollow"></p>
<p>and then:</p>
<p>$(document).ready(function() {<br />
$(&#8220;a[@rel='external']&#8220;).addClass(&#8220;external&#8221;).<br />
.click(function() { window.open($(this).href); return false; });<br />
});</p>
<p>This will add an &#8220;external&#8221; class to the link, which you can style and add visual ques that the link will open a new window.</p>
<p>But I would strongly advise against forcing links to open in new windows or tabs. Any kind of unanticipated action is bad usability.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois</title>
		<link>http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/comment-page-1/#comment-42507</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Thu, 04 Jan 2007 16:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://76design.ca/shiftcontrol/index.php/2006/12/21/wheres-my-target_tab/#comment-42507</guid>
		<description>Sorry guys.  But the way XHTML is going &quot;target=&quot; attributes are no longer supported.  I guess the philosophy is that (X)HTML is there to handle how the document is displayed, not to control the behaviour of the browser (or &quot;user agent&quot; as they call it).</description>
		<content:encoded><![CDATA[<p>Sorry guys.  But the way XHTML is going &#8220;target=&#8221; attributes are no longer supported.  I guess the philosophy is that (X)HTML is there to handle how the document is displayed, not to control the behaviour of the browser (or &#8220;user agent&#8221; as they call it).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Kirkland</title>
		<link>http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/comment-page-1/#comment-41337</link>
		<dc:creator>Jeff Kirkland</dc:creator>
		<pubDate>Mon, 01 Jan 2007 17:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://76design.ca/shiftcontrol/index.php/2006/12/21/wheres-my-target_tab/#comment-41337</guid>
		<description>It is so funny that you should write about this as I have thought about the same exact thing while working on a website recently.  You mentioned in your article that &quot;The Big &#039;M&#039;&quot; has made it their standard.  Don&#039;t forget that Opera is the same way. 

I am a Firefox user myself, and wanted to note that while you cannot open a link in a new tab in the HTML code, with the advent of Firefox 2.0, the browser now has the ability to force all &quot;target=&quot;_new&quot;&quot; links to open in a new tab instead.  I know this because I use it myself so that I can keep everything in one nice, neat window.  

Hopefully though, while designing HTML 5, they will take advancements like tabbed windows into consideration and provide the necessary, needed support.

Best regards and Happy New year!!</description>
		<content:encoded><![CDATA[<p>It is so funny that you should write about this as I have thought about the same exact thing while working on a website recently.  You mentioned in your article that &#8220;The Big &#8216;M&#8217;&#8221; has made it their standard.  Don&#8217;t forget that Opera is the same way. </p>
<p>I am a Firefox user myself, and wanted to note that while you cannot open a link in a new tab in the HTML code, with the advent of Firefox 2.0, the browser now has the ability to force all &#8220;target=&#8221;_new&#8221;" links to open in a new tab instead.  I know this because I use it myself so that I can keep everything in one nice, neat window.  </p>
<p>Hopefully though, while designing HTML 5, they will take advancements like tabbed windows into consideration and provide the necessary, needed support.</p>
<p>Best regards and Happy New year!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Thornley</title>
		<link>http://76design.ca/shiftcontrol/2006/12/21/wheres-my-target_tab/comment-page-1/#comment-41028</link>
		<dc:creator>Joseph Thornley</dc:creator>
		<pubDate>Fri, 29 Dec 2006 20:01:55 +0000</pubDate>
		<guid isPermaLink="false">http://76design.ca/shiftcontrol/index.php/2006/12/21/wheres-my-target_tab/#comment-41028</guid>
		<description>Travis,

Great idea! Why not do it yourself? I&#039;m sure it would catch on like wildfire.</description>
		<content:encoded><![CDATA[<p>Travis,</p>
<p>Great idea! Why not do it yourself? I&#8217;m sure it would catch on like wildfire.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

