Skip to content

Instantly share code, notes, and snippets.

View taspts's full-sized avatar

Per Sjoholm taspts

  • Stockholm, Sweden
View GitHub Profile
@taspts
taspts / AntiSpamEM
Created June 2, 2015 15:18
Javascript Anti Spam Email
<!-- Hiding email address using a function to write in document (DOM) -->
<script type="text/javascript">
//<![CDATA[
function AntiSpamEM(domain, id, name) {
email='"mail' + 'to:' +id + '@' + domain.replace(/%23/g,".") + '"'
return '<a href=' + email + 'onmouseover=' + email + 'onfocus=' + email + '>' + name + '</a>' ;
};
//]]>
</script>