Published
- 1 min read
convert text filed to password field in jquery
The solution for this is noted below
convert text filed to password field in jquery
Solution
$('input').on('click', function () {
$(this).attr('type', 'password');
});
Try other methods by searching on the site. That is if this doesn’t work