Deprecated: Assigning the return value of new by reference is deprecated in /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-includes/query.php on line 15

Deprecated: Assigning the return value of new by reference is deprecated in /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-includes/theme.php on line 505

Deprecated: Assigning the return value of new by reference is deprecated in /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-content/plugins/CodeHighlighter/codehighlighter.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-includes/cache.php:36) in /customers/ajaxorized.com/ajaxorized.com/httpd.www/wp-commentsrss2.php on line 8
Comments on: Another creative way to prevent bots from stealing your email addresses http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/ Web Innovation Mon, 22 Mar 2010 04:23:14 +0000 http://wordpress.org/?v=2.1.3 By: raveman http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-126 raveman Tue, 15 Jan 2008 19:13:17 +0000 http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-126 if i was bot writer i would log everything that is not right email, but got 'mailto:' text. I think you should hide that(even be adding it char by char, but simple encription would be much more cool) if i was bot writer i would log everything that is not right email, but got ‘mailto:’ text. I think you should hide that(even be adding it char by char, but simple encription would be much more cool)

]]>
By: Willem http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-127 Willem Tue, 15 Jan 2008 23:38:33 +0000 http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-127 Hi Raveman, You're right, to trick the bots you can be as creative as you want to be. Something like this will mislead the bots as well: ':otliam'.split('').reverse().join(''); It splits :otliam into an array, reverses the chars and joins it. Hi Raveman,
You’re right, to trick the bots you can be as creative as you want to be. Something like this will mislead the bots as well:

‘:otliam’.split(”).reverse().join(”);

It splits :otliam into an array, reverses the chars and joins it.

]]>
By: Sander http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-1408 Sander Sat, 24 May 2008 07:28:10 +0000 http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-1408 When I'm not lazy I use something like this: e('user','domain.com'); function e(u,d) { document.write( '<a href="mailto:' +u + '@' + d + '" rel="nofollow">' + u + '@' + d + '</a>' ); } When I’m not lazy I use something like this:

e(’user’,'domain.com’);

function e(u,d) {
document.write( ‘‘ + u + ‘@’ + d + ‘‘ );
}

]]>
By: Drewster http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-2085 Drewster Thu, 25 Sep 2008 20:21:57 +0000 http://ajaxorized.com/another-creative-way-to-prevent-bots-from-stealing-your-email-addresses/#comment-2085 Hey, nice solution. Only one thing, use a span and not a div as you are not allowed to put a block level element in a inline element and I guess you would (should) but this kind of text inside a p or something of the like. Hey, nice solution. Only one thing, use a span and not a div as you are not allowed to put a block level element in a inline element and I guess you would (should) but this kind of text inside a p or something of the like.

]]>