I'm creating a homepage which contains a page to contact people involved in this organisation.
In order to prevent spammers from collecting the e-mail addresses, I figured I'd have to do one of those things:
- Allow contact only through a web form. I don't like this because it could prevent some people from using it, because they don't like web forms.
- Create a javascript which creates the addresses when they are clicked.
This looks as follows:
function mailMe(name, domain, top) {
window.location.href = encodeURI("mailto:" + name + "@" + domain + "." + top);
}
This approach has the disadvantage of excluding people who have javascript disabled.
- The third approach would be to combine the two approaches to have a fallback possibility for those without javascript.
What do you think? Is there a better alternative than those I've thought of?
