I am looking for a very simple password strength script.
Something along the lines of
$('input[type=password]').pstrength({
min-length: 5,
callback: function(value){
//you can do whatever you want with the value here
}
});
So I don't want a progress bar, or anything visual at all.
Is there anything out there like this?