I have a usual login form consisting of two input fields, one for login, one for password. I am currently trying to add a control that will show entered password as plain te
I have never tried this myself but can't you just access the value property of the element?
if you have something like...
Then in JavaScript / jQuery...
var pass = document.getElementById('pw').value; $('pw').val()