modify password clone to password type right on submit to prevent the browser remind the content

This commit is contained in:
Morris Jobke 2013-04-19 10:06:18 +02:00
parent 38941a61bf
commit 938b12236a
1 changed files with 10 additions and 1 deletions

View File

@ -103,7 +103,16 @@
$clone.bind('blur', function() { $input.trigger('focusout'); });
setState( $checkbox, $input, $clone );
// set type of password field clone (type=text) to password right on submit
// to prevent browser save the value of this field
$clone.closest('form').submit(function(e) {
// .prop has to be used, because .attr throws
// an error while changing a type of an input
// element
$clone.prop('type', 'password');
});
if( callback.fn ){
callback.fn( callback.args );
}