jQuery dan mengubah jenis bidang input

jQery
$('#myPasswordField').attr('type', 'text');

OR
javascript
document.getElementById('myPasswordField').type = 'text';
Xanthous Xenomorph