Skip to content

Instantly share code, notes, and snippets.

@creativetorch
Created December 31, 2015 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creativetorch/33d98953526c4c71f784 to your computer and use it in GitHub Desktop.
Save creativetorch/33d98953526c4c71f784 to your computer and use it in GitHub Desktop.
Hide email address on webpage with small javascript
<script type="text/javascript" language="JavaScript">// <![CDATA[
var userid = "user";
var hostid = "host.com";
var link = userid + "@" + hostid;
document.write("<a hre" + "f=ma" + "ilto:" + userid + "@" + hostid + ">" + link + "</a>");
// ]]></script>
<noscript>user-{{at}}-host.com</noscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment