"Singleness of purpose is one of the chief essentials for success in life, no matter what may be one's aim."
-- John D Rockefeller Jnr
FREE HTML & E-mail Encryption
Stop the Spambots!
';
}
function encode_html(theForm) {
//this function encodes any html string passed to it so you can use it for
//image maps, images ... or anything else that takes your fancy
//it works pretty much the same as the one above except that it just encodes the whole string
re = /\"/g;
plain_html = theForm.html.value.replace (re, '\\\"');
encoded_html = hex_string('document.write(\'' + plain_html + '\')');
theForm.encoded_html.value = '';
}
function hex_string(mystring) {
newstring = '';
for (i=0; i
This page generates some Javascript code for FREE that you can copy and paste into your HTML page so that all those annoying spambots won't be able to harvest e-mail addresses from your webpage.
Spam-bots are automated to detect e-mail addresses on web pages and collect them all for someone who then sells the addresses by the millions (usually advertising their product using spam also!).
The code generated is Javascript that writes the HTML or e-mail address to the browser in an encrypted form.
The Javascript involved isn't terribly difficult so if you're technically minded, have a look at the page source and you'll be able to see how I've done it.
This produces essentially the same result for free as other services that people charge money for.
It's already in use on this page - in the e-mail link to the webmaster below.
Or, if you want to e-mail us, here's another example: . Please let us know of any feedback, suggestions or problems.