I am using a jQuery plugin that provides rulesets for visually displaying the quality of a user's typed in password.
This is a JSFIDDLE to see how that plugin works.
This is working fine for me. But I have a question, when I am typing a password the visual progress bar is working. but when I paste some text to password
field its progress bar is not working.
can any body tell me, can we update this plugin to fix this issue.
I use this jQuery -
jQuery(document).ready(function () {
var options = {
onLoad: function () {
$('#messages').text('Start typing password');
},
onKeyUp: function (evt) {
$(evt.target).pwstrength("outputErrorList");
}
};
$(':password').pwstrength(options);
});
Hope somebody may help me out. Thank you.