From 2c38778ca23f92e65ae2e2cff053515c621f77e8 Mon Sep 17 00:00:00 2001 From: peteruithoven Date: Wed, 7 May 2014 17:43:02 +0200 Subject: [PATCH] Update password on auto complete --- js/libs/jquery.showpassword.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/libs/jquery.showpassword.js b/js/libs/jquery.showpassword.js index 0f46783..d175134 100644 --- a/js/libs/jquery.showpassword.js +++ b/js/libs/jquery.showpassword.js @@ -97,6 +97,10 @@ }); + $clone.bind('change', function() { + update( $clone , $input) + }); + // Added for JQuery Validation compatibility // This will trigger validation if it's ON for blur event $clone.bind('blur', function() { $input.trigger('focusout'); });