It should be obfuscated to spambots. Browser would display it correctly. Because there is no point to encode the href part only - spambot will find the address between <a> tags. By using encoding, href part is usually replaced by some javascript. I'm searching how to also replace the address between <a> automatically.
Re: How to obfuscate email addresses?
Re: How to obfuscate email addresses?
By using encoding, href part is usually replaced by some javascript. I'm searching how to also replace the address between <a> automatically.
Re: How to obfuscate email addresses?
http://csarven.ca/hiding-email-addresses
http://rajeczy.com/arpad/lib/index.php? ... scate_ajax
https://rapidshare.com/files/457612426/ ... e_ajax.zip
https://rapidshare.com/files/457612427/obfuscate_js.zip
Re: How to obfuscate email addresses?
var dataProcessor = editor.dataProcessor, dataFilter = dataProcessor && dataProcessor.dataFilter; // This rewrites incoming (GET, viewing) data if (dataFilter) { dataFilter.addRules( { elements: { 'a': function (element) { if (element.attributes && element.attributes['href']) { // do your stuff here!! :D element.attributes['href'] = 'http://someurl/'; return element; } } } }); }Re: How to obfuscate email addresses?