Hide email address from spammer harvesters
Posted by admin on April 27 2007 21:16:57

Hide email address from spammer harvesters

When you need to show some email on your web page you need to protect it from spammer email harvesters. Don't list your email easy for any e-mail harvester program to find, and then include it to some spamming list.
There are some tricks to hide your email and show it smart to your custommers.



1. youraddress[at]yourhost.com - The result: youraddress[at]yourhost.com

2. youraddress & # 6 4 ; yourhost.com - The result: youraddress@yourhost.com          

3. JavaScript hide email from spammer
<script language="JavaScript" type="text/javascript">
    <!--      
    var myemail   = "youraddress" 
    var emailHost = "yourhost.com" 
    var showthat  = email + "& # 6 4 ;" + emailHost
    document.write("<a href=" + "mail" + "to:" + myemail + "@" + emailHost+ ">" + showthat + "</a>" + ".") 
    //--> 
     </script>