Skip to content

Instantly share code, notes, and snippets.

@bcalloway
Created March 7, 2009 20:03
Show Gist options
  • Save bcalloway/75421 to your computer and use it in GitHub Desktop.
Save bcalloway/75421 to your computer and use it in GitHub Desktop.
Hide email from spambots
<script language="JavaScript">
<!--
var name = "email";
var domain = "mydomain.com";
document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
document.write(name + '@' + domain + '</a>');
//-->
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment