Quote:
Originally posted by Linkster
Jay - it might be a good idea to make that email addie on your page a "mailto:" tag instead of a href tag so that people can actually email ya
|
LOL
If you want you can use this to kill spam spiders:
Code:
<script language="Javascript">
var name = "yourname"
var domain = "yourdomain.com"
document.write("<a href='mailto:" + name + "@" + domain + "'>")
document.write(name + "@" + domain)
document.write("</a>")
//-->
</script>