Internet People (classic)

MISC No Comments »

Funny video showing almost all of the famous Internet People over the last 8-10 years. Enjoy!

The ultimate password strength meter

Ajax, Javascript No Comments »

I made some improvements on the password strength meters available on the web. Using prototype/scriptaculous, I stole some code from ZeBadger (thanks!) and created a new meter which dynamically changes while typing your password.

Preview

Click here to see the demo

If you want to use this script, feel free to download the source and use it on your website.

Enjoy.

[via Ajaxorized]

Realtime email validation with scriptaculous

Ajax, Javascript No Comments »

When adding this tiny javascript to the onkeyup event of your inputbox, the border will turn green when the email address. It uses scriptaculous' morph function to perform this transformation. See a demo
(more…)

[via Ajaxorized]

Another creative way to prevent bots from stealing your email addresses

Javascript No Comments »

The following code (using prototype) prevents bots stealing the emailaddresses used on your website. Instead of including the emailaddress directly, use a div with a classname where the email-address needs to be placed:

Hi Bot! My email address is  !! Catch me if you can!

Then, use javascript to replace the email address after the page is loaded:

$$('.email_here').each( function(e) {  e.update('willem'+'@'+'ajaxorized.com').observe('click', function() { window.location = 'mailto:willem'+'@'+'ajaxorized.com'; }).setStyle({cursor:'pointer'});	});

Mind the concatenation that is used to prevent stealing from your javascript file. Include this piece of code in your body onload event and no bots will ever steal your email addresses again!

[via Ajaxorized]

Entries RSS Comments RSS Log in