Although there are still bots harvesting emails, I\'m wondering if you hide email addresses on websites. I know this was common practice a few years back, but it seems that
See http://hidemail.at converting your email address into a cool spam-prooved by a captcha service link you can share on the web, in Twitter, forums, Craigslist, anywhere
Here is an example of Email to be published as protected from bots link to try out:
Yes, SPAM bots still harvest emails. I saw some stat that said 90% of all email today is SPAM. Obfuscate your email: http://alicorna.com/obfuscator.html It isn't foolproof, but it makes it way harder for your email address to be harvested.
Also, you can make images like facebook does.
In terms of an honest answer, I generally don't bother, because GMail's spam protection is so great. But I also don't really conduct business via e-mails.
IMO the most important points against hiding are:
I publish my (non gmail) email address since more than 10 years as plain <a href="mailto:markus@malkusch.de">
into the web. There is no problem with UBE.
Making your email an image is good, but what about when you make your emails on the fly? Then you need to be making images all the time.
I use eBB tool as an chrome addon. You might read more here: http://www.netbuilders.org/seo4experts-seo-tools/email-bot-blocker-avoid-getting-spammed-bots-27149.html
~Mike
You can hide your email address and display it using JS. This isn't also foolproof but offers some protection.
Something like this should do the trick:
<a class="mail">contact me</a>
// in JS
var parts = ['my', '.', 'email', '@', 'example', '.', 'com'];
var elems = document.getElementsByClassName('mail');
var len = elems.length;
for (var i = 0; i < len; i++) {
elems[i].href = 'mailto:' + parts.join('');
}