robertk1
06-06-2006, 03:49 PM
Some time ago, I came across a web page that would convert an email address to a hex string. Very useful in FormMail to hide an email address from harvesters.
Now that I have a use for it, I can't find where I stored the link.
Anybody know this site?
Qgyen
06-06-2006, 04:07 PM
You could copy what I did on my site: http://www.digistic.net/support/
I have the email addresses as a Base64 string and dynamically set them to the <A> tag once the page is loaded. Feel free to copy it. Copy the <script> blocks with the keyStr, decode64, onLoad, and setEmail functions, then have an a tag like <a id="blahblah" />, and have another script block at the end of the page that calls the onLoad() method.
robertk1
06-06-2006, 04:12 PM
Thanks --- I will try that!