Hi,
I'm looking for a way to hide email adresses from spam bots, for example with a javascript.
A plugin would be good, but it should be in asp or asp.net because I use the FCKeditor in a c# written CMS.
can anyone help?
greetings
Frank
I'm looking for a way to hide email adresses from spam bots, for example with a javascript.
A plugin would be good, but it should be in asp or asp.net because I use the FCKeditor in a c# written CMS.
can anyone help?
greetings
Frank
RE: email spam bot protection
<a href="mailto:([^@]*)@([^"]*)">\1@\2</a>
and replace all such instances with
\1 AT \2
or whatever obfuscation you want? I don't think this functionality necessary belongs in the editor itself.