<?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: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters</title>
	<atom:link href="http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/</link>
	<description>Your Business Catalyst</description>
	<lastBuildDate>Tue, 07 Feb 2012 19:02:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Miguel</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-14185</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Mon, 13 Jun 2011 18:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-14185</guid>
		<description>Tested the code.  Works fine!  Many Thanks!</description>
		<content:encoded><![CDATA[<p>Tested the code.  Works fine!  Many Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-13986</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Tue, 07 Jun 2011 17:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-13986</guid>
		<description>Hello Lee,

Sorry for the delay...no sooner was I knee deep into this, I was pulled away from the project for a week or two but now I&#039;m back on.  I just  checked back today and saw your answer.    I appreciate the time you took to look over the question  - I will give it a go and report back.</description>
		<content:encoded><![CDATA[<p>Hello Lee,</p>
<p>Sorry for the delay&#8230;no sooner was I knee deep into this, I was pulled away from the project for a week or two but now I&#8217;m back on.  I just  checked back today and saw your answer.    I appreciate the time you took to look over the question  &#8211; I will give it a go and report back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-13669</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Mon, 30 May 2011 13:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-13669</guid>
		<description>Hi - using jquery load you can retrieve specific content from the target file. So to use it with multiple email addresses you can set up the file listing the emails as:

[text]
&lt;span id=&quot;email-1&quot;&gt;&lt;a href=&quot;mailto:email1@email.com&quot;&gt;email1@email.com&lt;/a&gt;&lt;/span&gt;
&lt;span id=&quot;email-2&quot;&gt;&lt;a href=&quot;mailto:email2@email.com&quot;&gt;email2@email.com&lt;/a&gt;&lt;/span&gt;
&lt;span id=&quot;email-3&quot;&gt;&lt;a href=&quot;mailto:email3@email.com&quot;&gt;email3@email.com&lt;/a&gt;&lt;/span&gt;
[/text]

Then for the jQuery use:

[js]
$(&quot;.email&quot;).each(function() {
    var var_email = $(this).text();
    $(this).load(&quot;/email_list.htm #&quot;+var_email);
});
[/js]

and for the actual email link in your web page use:

[text]
&lt;span class=&quot;email&quot;&gt;email-1&lt;/span&gt;
&lt;span class=&quot;email&quot;&gt;email-2&lt;/span&gt;
&lt;span class=&quot;email&quot;&gt;email-3&lt;/span&gt;
[/text]</description>
		<content:encoded><![CDATA[<p>Hi &#8211; using jquery load you can retrieve specific content from the target file. So to use it with multiple email addresses you can set up the file listing the emails as:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;span id=&quot;email-1&quot;&gt;&lt;a href=&quot;mailto:email1@email.com&quot;&gt;email1@email.com&lt;/a&gt;&lt;/span&gt;
&lt;span id=&quot;email-2&quot;&gt;&lt;a href=&quot;mailto:email2@email.com&quot;&gt;email2@email.com&lt;/a&gt;&lt;/span&gt;
&lt;span id=&quot;email-3&quot;&gt;&lt;a href=&quot;mailto:email3@email.com&quot;&gt;email3@email.com&lt;/a&gt;&lt;/span&gt;
</pre>
<p>Then for the jQuery use:</p>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;.email&quot;).each(function() {
    var var_email = $(this).text();
    $(this).load(&quot;/email_list.htm #&quot;+var_email);
});
</pre>
<p>and for the actual email link in your web page use:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;span class=&quot;email&quot;&gt;email-1&lt;/span&gt;
&lt;span class=&quot;email&quot;&gt;email-2&lt;/span&gt;
&lt;span class=&quot;email&quot;&gt;email-3&lt;/span&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-13668</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Mon, 30 May 2011 13:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-13668</guid>
		<description>Hello,
After reviewing the code, I went out and referenced the latest release of jQuery. This helped because it now works with IE9.  This solution displays the emails but I cannot utilize the link to launch the user&#039;s mail client.  I saw you have solution for this elsewhere on this site but that only applied to one address.  Can the two solutions be combined somehow?  Again, thanks for your help</description>
		<content:encoded><![CDATA[<p>Hello,<br />
After reviewing the code, I went out and referenced the latest release of jQuery. This helped because it now works with IE9.  This solution displays the emails but I cannot utilize the link to launch the user&#8217;s mail client.  I saw you have solution for this elsewhere on this site but that only applied to one address.  Can the two solutions be combined somehow?  Again, thanks for your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-13581</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Fri, 27 May 2011 19:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-13581</guid>
		<description>Thanks for posting this solution.  I was looking for exactly this kind of thing since my supervisor has particular requirements for our contact page content.   I tried this code out and was very happy to see it work in Safari, Chrome X and Firefox 4 ...Of course, OF COURSE it DID NOT work in IE9.  Please note my frustration is with the browser and not with you.  Anyway, the page loads, acknowledges the two span tags (they flash on screen then disappear) but IE never parses them to display the email addresses from the related page.  *SIGH* Is there an IE tweak that will fix this?  Again, thank you.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this solution.  I was looking for exactly this kind of thing since my supervisor has particular requirements for our contact page content.   I tried this code out and was very happy to see it work in Safari, Chrome X and Firefox 4 &#8230;Of course, OF COURSE it DID NOT work in IE9.  Please note my frustration is with the browser and not with you.  Anyway, the page loads, acknowledges the two span tags (they flash on screen then disappear) but IE never parses them to display the email addresses from the related page.  *SIGH* Is there an IE tweak that will fix this?  Again, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention Using jQuery to Hide Multiple Email Addresses From Spam Harvesters « Design Chemical – Web Design, Printing, Packaging &#38; SEO -- Topsy.com</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-847</link>
		<dc:creator>Tweets that mention Using jQuery to Hide Multiple Email Addresses From Spam Harvesters « Design Chemical – Web Design, Printing, Packaging &#38; SEO -- Topsy.com</dc:creator>
		<pubDate>Thu, 15 Apr 2010 20:36:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-847</guid>
		<description>[...] This post was mentioned on Twitter by Email Spammers. Email Spammers said: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters ... http://bit.ly/a6oCIe [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Email Spammers. Email Spammers said: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters &#8230; <a href="http://bit.ly/a6oCIe" rel="nofollow">http://bit.ly/a6oCIe</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters &#8230; &#187; KHMER855.COM</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-838</link>
		<dc:creator>Using jQuery to Hide Multiple Email Addresses From Spam Harvesters &#8230; &#187; KHMER855.COM</dc:creator>
		<pubDate>Thu, 15 Apr 2010 07:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-838</guid>
		<description>[...] Continued here: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Continued here: Using jQuery to Hide Multiple Email Addresses From Spam Harvesters &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How do I set up a list of recipients for weekly e-mails and send only to each w/ others addresses not shown? &#124; best-petinsurance.info</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/using-jquery-to-hide-multiple-email-addresses-from-spam-harvesters/comment-page-1/#comment-836</link>
		<dc:creator>How do I set up a list of recipients for weekly e-mails and send only to each w/ others addresses not shown? &#124; best-petinsurance.info</dc:creator>
		<pubDate>Thu, 15 Apr 2010 07:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=377#comment-836</guid>
		<description>[...] Using jQuery t&amp;#959 H&amp;#1110&amp;#1281&amp;#1077 Multiple Email Addresses Fr&amp;#959m Spam Harvesters &#171; De... [...]</description>
		<content:encoded><![CDATA[<p>[...] Using jQuery t&amp;#959 H&amp;#1110&amp;#1281&amp;#1077 Multiple Email Addresses Fr&amp;#959m Spam Harvesters &laquo; De&#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

