Good day all,
I have a form that has a password field:
Naturally, the i
Try This :
In HTML and JS :
// Convert Password Field To Text On Hover. var passField = $('input[type=password]'); $('.show-pass').hover(function() { passField.attr('type', 'text'); }, function() { passField.attr('type', 'password'); })