|
Non-Spiderable mailto links with JavaScript
script written by 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.
// 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>
Remember, if you get stuck or need to ask any questions, register with the forums and tell us about it! |
|