Funny video showing almost all of the famous Internet People over the last 8-10 years. Enjoy!
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.
![]()
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]
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]
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]
Recent Comments