<?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: DNN: How to Add a External Menu Link that Opens in a New Window</title>
	<atom:link href="http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/feed/" rel="self" type="application/rss+xml" />
	<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/</link>
	<description>PHP, PBBGs, and Business</description>
	<lastBuildDate>Tue, 28 Feb 2012 19:31:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Dcalexander</title>
		<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/comment-page-1/#comment-2225</link>
		<dc:creator>Dcalexander</dc:creator>
		<pubDate>Tue, 28 Feb 2012 19:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://datawalke.com/?p=3#comment-2225</guid>
		<description>Hi,

Tried the 2nd option, not successful.   What is the Tabs Table?  My SQL Editor only browses my computer for a file...</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Tried the 2nd option, not successful.   What is the Tabs Table?  My SQL Editor only browses my computer for a file&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swwalsh1981</title>
		<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/comment-page-1/#comment-1499</link>
		<dc:creator>Swwalsh1981</dc:creator>
		<pubDate>Thu, 11 Aug 2011 17:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://datawalke.com/?p=3#comment-1499</guid>
		<description>i vactually made a mistake in that code. in DNN 6 it uses the popups, so you need to avoid the javascript as well... so this works:

    $(function () {        $(&#039;a:not([href=&quot;&quot;]), a:not([href=&quot;javascript&quot;])&#039;).each(function () {            if (this.hostname !== location.hostname) {                $(this).attr(&#039;target&#039;, &quot;_blank&quot;);            }        });    });</description>
		<content:encoded><![CDATA[<p>i vactually made a mistake in that code. in DNN 6 it uses the popups, so you need to avoid the javascript as well&#8230; so this works:</p>
<p>    $(function () {        $(&#8216;a:not([href=""]), a:not([href="javascript"])&#8217;).each(function () {            if (this.hostname !== location.hostname) {                $(this).attr(&#8216;target&#8217;, &#8220;_blank&#8221;);            }        });    });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swwalsh1981</title>
		<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/comment-page-1/#comment-1498</link>
		<dc:creator>Swwalsh1981</dc:creator>
		<pubDate>Thu, 11 Aug 2011 16:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://datawalke.com/?p=3#comment-1498</guid>
		<description>hey, if you are like our organization, we have many users who are not going to type that in each time they have to open a link in a new window... they will either forget, type it wrong, etc as they are not techy. For those who want a pretty easy way to do this and have access to your DNN installation... then open up the skin you are usoing  ... and at the bottom put this block of code:


$(function () {        $(&#039;a:not([href=&quot;&quot;])&#039;).each(function () {            if (this.hostname !== location.hostname) {                $(this).addClass(&#039;externalLink&#039;).attr(&#039;target&#039;, &quot;_blank&quot;);            }        });    });



what this does is any EXTERNAL link it will add the target=&quot;_blank&quot; into any links on your page ... and as well a class called externalLink so you can make a CSS entry and change stuff around. give it a shot...</description>
		<content:encoded><![CDATA[<p>hey, if you are like our organization, we have many users who are not going to type that in each time they have to open a link in a new window&#8230; they will either forget, type it wrong, etc as they are not techy. For those who want a pretty easy way to do this and have access to your DNN installation&#8230; then open up the skin you are usoing  &#8230; and at the bottom put this block of code:</p>
<p>$(function () {        $(&#8216;a:not([href=""])&#8217;).each(function () {            if (this.hostname !== location.hostname) {                $(this).addClass(&#8216;externalLink&#8217;).attr(&#8216;target&#8217;, &#8220;_blank&#8221;);            }        });    });</p>
<p>what this does is any EXTERNAL link it will add the target=&#8221;_blank&#8221; into any links on your page &#8230; and as well a class called externalLink so you can make a CSS entry and change stuff around. give it a shot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich Hosek</title>
		<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/comment-page-1/#comment-1486</link>
		<dc:creator>Rich Hosek</dc:creator>
		<pubDate>Tue, 12 Jul 2011 17:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://datawalke.com/?p=3#comment-1486</guid>
		<description>Had a problem with filtering something that was &quot;double escaped,&quot; so I changed the single quotes in the javascript example to double quotes and it works fine. Thanks!</description>
		<content:encoded><![CDATA[<p>Had a problem with filtering something that was &#8220;double escaped,&#8221; so I changed the single quotes in the javascript example to double quotes and it works fine. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swetha</title>
		<link>http://datawalke.com/dnn/dnn-how-to-add-a-external-menu-link-that-opens-in-a-new-window/comment-page-1/#comment-218</link>
		<dc:creator>swetha</dc:creator>
		<pubDate>Tue, 29 Jun 2010 10:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://datawalke.com/?p=3#comment-218</guid>
		<description>hi jim i want to know the location of pages in dnn and i need to transfer the pages from system to system can u help me in that</description>
		<content:encoded><![CDATA[<p>hi jim i want to know the location of pages in dnn and i need to transfer the pages from system to system can u help me in that</p>
]]></content:encoded>
	</item>
</channel>
</rss>

