Email Spam Protection
Hide in plain sight. Keep your inbox clean by breaking your email address into pieces and reassembling it with JavaScript, preventing scrapers from harvesting your contact info.
The link below is generated by JavaScript:
View Source code to see that the address is not there!
Copy the Script
<script>
// Configure these variables
var user = "info";
var domain = "java-scripts.net";
// Output the link
document.write('<a href="mailto:' + user + '@' + domain + '">' + user + '@' + domain + '</a>');
</script>
Frequently Asked Questions
Spam bots typically scrape raw HTML source code looking for 'mailto:' or '@' symbols. Since this script constructs the email address only after the page loads (using JavaScript), simple bots cannot see it.
No. To the human user, it looks and acts exactly like a normal clickable email link.
No. Sophisticated bots that execute JavaScript (like Googlebot) can read it, but it filters out the vast majority of 'dumb' harvester scripts.