Trying to change input type attribute from password to text.
input
password
text
$(\'.form\').find(\'input:password\').attr({type:\"text\"
my solution:
$('#myinput').clone().attr('type','tel').insertAfter('#myinput').prev().remove();