Slashdot Mirror


User: w1bbl3

w1bbl3's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Another approach... on De-spamming Your Inbox The Hard Way · · Score: 1
    I use a nice bit of Javascript to protect my email addy on my contact page which has been pretty good at avoiding email harvesting parasites.
    <SCRIPT LANGUAGE="JavaScript">

    <!-- Begin
    user = "your-email";
    site = "your-domain";

    document.write('<a href=\"mailto:' + user + '@' + site + '\">');
    document.write(user + '@' + site + '</a>');
    // End -->
    </SCRIPT>