I made a javascript that was supposed to keep spam bots off my email address, but It wouldnt work, My source is:
function mail(add,www,ext){
window.location=add+"@"+www+"."+ext;}
and what I did with that function was I used it with links somewhat like this:
<a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:mail('dmg119','mail','com')">Email me</a>
Can anyone tell me what I am doing wrong?
function mail(add,www,ext){
window.location=add+"@"+www+"."+ext;}
and what I did with that function was I used it with links somewhat like this:
<a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:mail('dmg119','mail','com')">Email me</a>
Can anyone tell me what I am doing wrong?