1. HIDE EMAIL THROUGH CSS
1A. CSS PSEUDO-CLASSES
You can use the ::before and ::after pseudo-elements in CSS to insert the email username and domain name on either sides of the @ symbol. The bots, which are generally blind to CSS, will only see the @ sign while browsers will render the complete email address which, in this case, is john@gmail.com.
<style> .domain::before { content: "\0040"; /* Unicode character for @ symbol */ } </style> john<span class="domain">abc.com</span>
1B. REVERSE THE DIRECTION
You can write your email address in reverse (john@abc.com as moc.cba@nhoj) and then use the unicode-bidi and direction CSS properties to instruct the browser to display the text in reverse (or correct) direction. The text is selectable but the address would copied in reverse direction.
<style> .reverse { unicode-bidi: bidi-override; direction: rtl; } </style> <!-- write your email address in reverse --> <span class="reverse">moc.cba@nhoj</span>
1C. TURN OFF ‘DISPLAY’
You can add extra characters to your email address to confuse the spam bots and then use the CSS ‘display’ property to render your actual email address on the screen while hiding all the extra bits.
<style> #dummy { display: none; } </style> <!-- You can add any number of z tags but they'll stay hidden --> john<span id="dummy">REMOVE</span>@abc<span id="dummy">REMOVE</span>.com
2. OBFUSCATE EMAIL THROUGH JAVASCRIPT
2A. USING THE ‘ONCLICK’ EVENT
You can create a regular mailto hyperlink for your email address but replace some of the characters – like the dot and the @ sign – with text. Then add an onclick event to this hyperlink that will substitute the text with the actual symbols.
<a href = "mailto:johnATgmailDOTcom" onclick = "this.href=this.href .replace(/AT/,'@') .replace(/DOT/,'.')" >Contact Me</a>
2B. RANDOM ARRAY
Split your email address into multiple parts and create an array in JavaScript out of these parts. Next join these parts in the correct order and use the .innerHTML property to add the email address to the web page.
<span id="email"></span> <script> var parts = ["john", "abc", "com", ".", "@"]; var email = parts[0] + parts[4] + parts[1] + parts[3] + parts[2]; document.getElementById("email").innerHTML=email; </script>
3. WORDPRESS + PHP
If you are on WordPress, you can also consider using the built-in antispambot() function to encode your email address. The function will encode the characters in your address to their HTML character entity (the letter a becomes a and the @ symbol becomes @) though they will render correctly in the browser.
<?php echo antispambot("john@abc.com"); ?>
You can also encode email addresses in the browser.
Finally, if you really don’t want spam bots to see your email address, either don’t put it on the web page or use Google’s reCAPTCHA service. It hide your email address behind a CAPTCHA and people will have to solve it correctly to see your email address.
0 comments:
Post a Comment