
Password Strength
Let your users check the effectiveness of their password.
$(document).ready(function(){
$(".password").password({
score: '.score' //ELEMENT TO SHOW PASSWORD STRENGTH
})
})
input .password { border:1px solid #CCCCCC; padding:3px; }
.score { float:left; margin-left:5px; padding:4px; width:100px; text-align:center; }