Another Javascript

admin

Administrator
Staff member
This script is from Bravenet's Tips and Tricks archive. As has been noted before, if user's have javascript disabled on their end, it won't do you much good. There are probably better alternatives, but thought I'd throw it out here anyway, as there have been several questions lately!!<br /><br /><!--quoteo--><div class='quotetop'>QUOTE</div><div class='quotemain'><!--quotec-->Tired of getting junk email?<br /><br />Here is a handy script that you can add to your webpage to hide your email address from email robots (harvesters). Simply modify the address, domain and extension in the script below. Then paste it into your web pages anywhere you wish to have your email address appear on the page. Email Harvesters are then unable to read your email address - saving you from spam!<br /><br /><br /><script LANGUAGE="javascript"><br />var first = 'ma';<br />var second = 'il';<br />var third = 'to:';<br /><br />// example: info<br />var address = 'tips';<br /><br />// example: hotmail<br />var domain = 'bravenet';<br /><br />var ext = 'com'; <br />document.write('<a href=http://www.totalchoicehosting.com/forums/lofiversion/index.php/"');<br />document.write(first+second+third);<br />document.write(address);<br />document.write('@');<br />document.write(domain);<br />document.write('.');<br />document.write(ext); <br />document.write('">'); <br />document.write('Email Me!</a>');<br /></script><!--QuoteEnd--></div><!--QuoteEEnd--><!--content-->
 
Back
Top