jQuery et modification du type de champ de saisie

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

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