Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 8 users online
 o Most users online: 67
 o Home
  o Javascripts
   o Redirection/Links
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o Free Wedding Websites
 o OxyScripts
 o Open Source Design
 o devnet
 o designplace
 o Wedding Vendor Directory

Non-Spiderable mailto links with JavaScript (Rated 0)

Description:

This script will build your HTML mailto: links using Javascript and variables, reducing the factor of a bot crawling the full email address in your source code. Includes subject line and body text as well as the email address.

Code starts here


// Place this script wherever you want a mailto link

<script language="Javascript" type="text/javascript">
<!-- // hide from old browsers

//variables
var user = "Enter user"; //for example - "joe_bloggs"
var domain = "Enter domain"; //for example - "hotmail.com"
var subject = "Enter a subject"; //for example = "website feedback"
var bodytext = "Enter body text"; //for example - "dear Joe, here are my comments"

//output
document.write('<a href=\"mailto:' + user + '@' + domain + '?subject=' + subject + '&body=' + bodytext + '\">');
document.write('Link Text</a>');

// -->
</script>


Last Edited: 1047406930


Submitted by Devscripts on 11-03-2003 18:22


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net