<?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: Quick JavaScript email obfuscation</title>
	<atom:link href="http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/feed/" rel="self" type="application/rss+xml" />
	<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/</link>
	<description>Code is poetry</description>
	<lastBuildDate>Tue, 09 Mar 2010 10:53:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andy</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-1335</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 12 Jan 2010 17:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-1335</guid>
		<description>@Andy :-)

Forgot - the link is http://www.privatedaddy.com/</description>
		<content:encoded><![CDATA[<p>@Andy <img src='http://aidanlister.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Forgot &#8211; the link is <a href="http://www.privatedaddy.com/" rel="nofollow">http://www.privatedaddy.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-1334</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 12 Jan 2010 17:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-1334</guid>
		<description>@Aidan

I have developed a solution for just such a need. My free (beer + speech) script called PrivateDaddy walks over all the mailto links in your site and replaces them automatically. The script is unobtrusive and also works for browsers with JavaScript disabled. Best of all it doesn&#039;t get in the way - just one line of code in header.php (or whatever header file you use) and your entire site is covered.

Hope you find this shameless plug useful :-)

Cheers,

Andy</description>
		<content:encoded><![CDATA[<p>@Aidan</p>
<p>I have developed a solution for just such a need. My free (beer + speech) script called PrivateDaddy walks over all the mailto links in your site and replaces them automatically. The script is unobtrusive and also works for browsers with JavaScript disabled. Best of all it doesn&#8217;t get in the way &#8211; just one line of code in header.php (or whatever header file you use) and your entire site is covered.</p>
<p>Hope you find this shameless plug useful <img src='http://aidanlister.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers,</p>
<p>Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Under</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-565</link>
		<dc:creator>Under</dc:creator>
		<pubDate>Sat, 12 Aug 2006 00:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-565</guid>
		<description>Excelent function! thank you for sharing your code :)</description>
		<content:encoded><![CDATA[<p>Excelent function! thank you for sharing your code <img src='http://aidanlister.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luchyx</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-516</link>
		<dc:creator>Luchyx</dc:creator>
		<pubDate>Sat, 04 Feb 2006 11:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-516</guid>
		<description>GOOD WORK MEN!.
NICE NICE NICE
with this modification you can set class attributes or id for CSS support.

old: function mail_obfuscate($email, $text = &#039;&#039;)
new: function mail_obfuscate($email, $text = &#039;&#039;, $plus_params=&#039;&#039;)

old: $string = sprintf(&#039;document.write(\&#039;&lt;a href=&quot;mailto:%s&quot;&gt;%s&lt;/a&gt;\&#039;);&#039;,
            htmlspecialchars($email),
			htmlspecialchars($text)

new: $string = sprintf(&#039;document.write(\&#039;&lt;a href=&quot;mailto:%s&quot; %s&gt;%s&lt;/a&gt;\&#039;);&#039;,
            htmlspecialchars($email),
            $plus_params,
			htmlspecialchars($text)

usage:  mail_obfuscate(&quot;info@riaevolution.com&quot;, $text = &#039;info@riaevolution.com&#039;, &#039;class=&quot;link_content_footer&quot;&#039;);</description>
		<content:encoded><![CDATA[<p>GOOD WORK MEN!.<br />
NICE NICE NICE<br />
with this modification you can set class attributes or id for CSS support.</p>
<p>old: function mail_obfuscate($email, $text = &#8221;)<br />
new: function mail_obfuscate($email, $text = &#8221;, $plus_params=&#8221;)</p>
<p>old: $string = sprintf(&#8216;document.write(\&#8217;&lt;a href=&#8221;mailto:%s&#8221;&gt;%s&lt;/a&gt;\&#8217;);&#8217;,<br />
            htmlspecialchars($email),<br />
			htmlspecialchars($text)</p>
<p>new: $string = sprintf(&#8216;document.write(\&#8217;&lt;a href=&#8221;mailto:%s&#8221; %s&gt;%s&lt;/a&gt;\&#8217;);&#8217;,<br />
            htmlspecialchars($email),<br />
            $plus_params,<br />
			htmlspecialchars($text)</p>
<p>usage:  mail_obfuscate(&#8220;info@riaevolution.com&#8221;, $text = &#8216;info@riaevolution.com&#8217;, &#8216;class=&#8221;link_content_footer&#8221;&#8216;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magic</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-491</link>
		<dc:creator>Magic</dc:creator>
		<pubDate>Fri, 09 Dec 2005 06:08:53 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-491</guid>
		<description>i love this one .... I HATE spammers ... :)</description>
		<content:encoded><![CDATA[<p>i love this one &#8230;. I HATE spammers &#8230; <img src='http://aidanlister.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aidan Lister</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-474</link>
		<dc:creator>Aidan Lister</dc:creator>
		<pubDate>Sun, 20 Nov 2005 21:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-474</guid>
		<description>This is losely based on the obfuscator in Smarty, and is the function used to obfuscate the emails in the comments on this site.</description>
		<content:encoded><![CDATA[<p>This is losely based on the obfuscator in Smarty, and is the function used to obfuscate the emails in the comments on this site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jexus</title>
		<link>http://aidanlister.com/2004/04/quick-javascript-email-obfuscation/comment-page-1/#comment-450</link>
		<dc:creator>Jexus</dc:creator>
		<pubDate>Wed, 26 Oct 2005 03:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://aidanlister.com/?p=68#comment-450</guid>
		<description>very nice;) thnx a lot for this useful code</description>
		<content:encoded><![CDATA[<p>very nice;) thnx a lot for this useful code</p>
]]></content:encoded>
	</item>
</channel>
</rss>
