Home     SSI Lab     CSS Templates     CSS     Htaccess     Web Design     XHTML

Design Tutorials

graphic-img   

SSI-D HOME

SSI LAB

CSS Templates

CSS

.Htaccess

Web Design

Getting Started

Site Building

Web Tricks

Legal Issues

(X)HTML

HTML-Kit

Resources





Display Email Address While Avoiding Spam

Introduction

This guide will demonstrate how to display an email link on your web page while avoiding the risk of your address being harvested by spammers robots. It's just basic javascript and very easy to customise.

Tested in Mozilla Icon Opera Icon IE6 Icon



Create the javascript

The first step is to define the variables. The following goes into the <HEAD> of your document:

<script language="JavaScript" type="text/javascript">
var name = "webmaster";
var address = "domain.com";
var link = "Mail me!";
var subject = "Feedback";
function protectmail() {
document.write('<a class="email" href=mailto:' + name + '@' + address + '?subject=' + subject + '>' + link + '</a>');
}
</script>

To walk through this (if you are not familiar with javascript): first we define the variables (var) we need to make up the link. Each variable has a value, the name variable (var name) is webmaster, the address variable is your domain, domain.com, the link variable is the link which will be displayed on screen (Mail me!), the subject variable is the subject of the email. You can add or take away variables as you need to, so long as they are reflected in the function...

The function basically ties all the variables together to create the email link. "document.write" tells the browser to "write" the following; <a class="email" href=mailto: (basic mailto link code) + the name variable + the @ symbol + the address variable + ?subject= (code to add a subject to the mail link) + the subject variable then close the tag with < then write the link variable (Mail me!) and then close the link tag with </a>.

Which equals:

<a class="email" href=mailto:' + webmaster + '@' + domain.com + '?subject=' + Feedback + '>' + Mail me! + '</a>


Defining the variables and function above is not enough. Now we need to tell the browser where to "write" this link with the following. Remember, the function is protectmail() so where ever you want your email link to appear simple add the following:

<script language="JavaScript" type="text/javascript">
protectmail();
</script>

The result is this is our mail link:



Full code

Into your document head:

<script language="JavaScript" type="text/javascript">
var name = "webmaster";
var address = "domain.com";
var link = "Mail me!";
var subject = "Feedback";
function protectmail() {
document.write('<a class="email" href=mailto:' + name + '@' + address + '?subject=' + subject + '>' + link + '</a>');
}
</script>

Into your document body:

<script language="JavaScript" type="text/javascript">
protectmail();
</script>



Multiple Addresses

If you want to display more than one email address on a webpage we just need to create a new function for each email address.

In this example we'll create two addresses, each address will need a new function and variable names [IF the variables are different]

<script language="JavaScript" type="text/javascript">
var name1 = "webmaster";
var name2 = "sales";

var address = "domain.com";

var link1 = "Mail the webmaster!";
var link2 = "Mail the sales department!";

var subject = "Feedback";

function protectmail1() {
document.write('<a class="email" href=mailto:' + name1 + '@' + address + '?subject=' + subject + '>' + link1 + '</a>');
}

function protectmail2() {
document.write('<a class="email" href=mailto:' + name2 + '@' + address + '?subject=' + subject + '>' + link2 + '</a>');
}
</script>

Into your document body:

<script language="JavaScript" type="text/javascript">
protectmail1();
document.write ("<br>");
protectmail2();
</script>

As you see above the domain address and the subject stayed the same so we used the same variable names for these. But the recipient and the link text were changing so we created new variable names for these. This resulted in:



Alternate Version

The following version was proposed by James Crooke of CJ Website Design and allows for easier insertion of multiple mail links.

First define the function in the <head> of your document:

<script language="JavaScript" type="text/javascript">
// Script Originally by SSI Developer (www.ssi-developer.net)
// Modified by James Crooke of CJ Website Design (www.cj-design.com)

function protectmail(name, address, link, subject, body) {

document.write("<a href='mailto:" + name + "@" + address + "?subject=" + subject + "&body=" + body + "'>" + link + "</a>");

}
</script>

We then need to call this function in the body of our document. We can call the function a number of times using different values as shown:

<script language="JavaScript" type="text/javascript">
protectmail("webmaster", "cj-design.com", "Contact Us", "RE: Enquiry", "Hi CJ-Design.com");
</script>

<script language="JavaScript" type="text/javascript">
protectmail("webmaster", "cj-design.com", "Feedback", "Feedback", "Regarding your website...");
</script>

Which gives the following result:

As demonstrated this alternative method makes it very easy to set up multiple email links using the same function as defined in the header.


Note: If using the alternative version on your web site please do not remove the copyright notice in the script.


Advertisement Sign up for free to PayBox.me today and get $25 just for joining AND earn up to $20 per day for participating.