JQuery Email Deobfuscator allows you to write your email as "myemail [at] mydomain [dot] com [dot] tld" but display it as "myemail@mydomain.com.tld" to the user.
It's an wishful effort to fight spam while enhancing usability.
-
Given that you have an email link:
<a id="myEmailID" href="mailto:myemail [at] mydomain [dot] com [dot] tld"> myemail [at] mydomain [dot] com [dot] tld </a>
-
Add the call to $().deobsfucate()
<script type="text/javascript"> $('#myEmailID').deobsfucate(); </script>
-
That's all. Try it now!