Click to See Complete Forum and Search --> : Error with Anti-spam Email


alcodes
02-03-2003, 04:23 PM
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="javascript:mail('dmg119','mail','com')">Email me</a>

Can anyone tell me what I am doing wrong?

Sergey Smirnov
02-03-2003, 04:46 PM
Try:

window.location.href="mailto:"+add+"@"+www+"."+ext;