Protect your email address with JavaScript

Spam is still an increasing problem on the internet and here’s a quick way that you can save your email address from getting poached. This method uses concatenation to bind the email address, The first operator, called the string operator, is the plus sign ( + ). It is used to signify that one whole string is to be ‘added’ to another whole string. for example in our script we have the following line.

 var emailaddress = ('youremail@' + 'emailaddress.com')

The next line just writes an HTML ‘a’ tag on our page with a mailto link to our email address that is now in the variable ‘emailaddress’

 document.write('<a href="mailto:' + emailaddress + '">' + emailaddress + '</a>')

Here’s the complete code:

 var emailaddress = ('youremail@' + 'emailaddress.com')
document.write('<a href="mailto:' + emailaddress + '">' + emailaddress + '</a>')

It may be an idea to add <noscript> </noscript>  tags for anyone that has Javascript disabled, telling them that they won’t be able to see your email address.

This entry was posted in Javascript, Tutorials and tagged , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Subscribers
1,250
Twitter
510
Comments
1,207
Posts
125