Good day all,
I have a form that has a password field:
Naturally, the i
a rapid response not tested on several brosers, works on gg chrome / win
-> On focus event -> show/hide password
script jQuery
// show on focus
$('input[type="password"]').on('focusin', function(){
$(this).attr('type', 'text');
});
// hide on focus Out
$('input[type="password"]').on('focusout', function(){
$(this).attr('type', 'password');
});