Protecting your e-mail address
Garry Stasiuk
4909 NE 47 Ave
Vancouver, WA 98661
360-750-4524
A Java Script for you...
The e-mail address is protected from spam by utilizing a small
JavaScript
<!-- STEP ONE: Paste this code into
the HEAD of your HTML document -->
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var user;
var domain;
var suffix;
function jemail(user, domain, suffix){
document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}
//-->
// End -->
</script>
</head>
<!-- STEP TWO: Copy this code into
the body of your HTML document -->
<body>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
jemail("garry", "uofgts", "com");
// End -->
</script>
</body>
Of Course, replace the parts of
your e-mail address
in the line beginning
with "jemail"
Other e-mail hiding or encoding techniques
There are many web sites that have on-line encoding generators. Use one of the sites listed below. Save the code generated by the web site as a snippet and paste it into a web page everytime you use YOUR e-mail address for Mailto: Contact!
http://www.willmaster.com/library/generators/linkgenerator.php
http://www.email-encoder.net/index.php
http://www.wbwip.com/wbw/emailencoder.html
These generators turn your e-mail address into something like this "For more information, send email to yourname@domain.com." In the source code for the web page, the above should look like this: "For more information, send email to yourname@domain.com "
But, in the html document it looks like this <a href="mailto:
yourname@domain.com">
yourname@domain.com
</a>"