View Single Post
Old 10-24-2007, 12:29 AM   #5 (permalink)
Andrew
The Acquainted
 
Join Date: Sep 2007
Location: Arizona
Posts: 114
Thanks: 10
Andrew is on a distinguished road
Default

I do it this way, which I just recently put into place.
Code:
	<script type="text/javascript">
	function noSpam(name, domain) {
		var email = name + "@" + domain;
		location.href = "mailto:" + email;
	}
	</script>
Code:
<a href="javascript:noSpam('admin', 'psdtocode.com');">emailing me</a>
I might try your way also, seems like a good plan.
Send a message via AIM to Andrew Send a message via MSN to Andrew
Andrew is offline  
Reply With Quote