![]() | |||||||
Protect Against Spam Crawlers How to protect your e-mail address: This tutorial will show you how to protect your e-mail address against Spam Crawlers. If you don't already know what Spam Crawlers are, read this post by DarkDevil located here. So, how do you protect your e-mail? Easy, it can be done with simple JavaScript - no need to use complicated Images or REMOVE text in e-mail links. Let's take a basic example of an e-mail link to me@somewhere.com <A HREF="mailto:me@somewhere.com" ALT="Mail Me!">me@somewhere.com</A> Now this will not work, a Spam Crawler could pick up this e-mail easily. So how would you protect the example above? Like this: -------------------- Revised Version ---------------------- <SCRIPT LANGUAGE="JavaScript"> <!-- hide me function mailme() { window.location = "m" + "a" + "i" + "l" + "t" + "o" + ":" + "me"+ "@" + "somewhere" + "." + "c" + "o" + "m"; } //--> </SCRIPT> <A HREF="javascript:void(1)" ALT="Mail Me!" onClick="mailme()" >Mail me</A> ------------------------------------- Pretty easy once you think about it huh? Happy Programming! P.S. In the second example the <A HREF> is pointing to "java script:void(1)", this was modified by the forum - in reality there are no spaces in "javascript:void(1)" [edit]: I added the P.S. |
Wow, I never knew how they even got my email off my website! |
wow this is a nice tutorial ;) |
thanks for that :) |
| All times are GMT -7. The time now is 01:52 PM. |
Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0