$(document).ready(function() {
// #login-box password field
$(\'#password\').attr(\'type\', \'text\');
$(\'#passwo
It works much easier with that:
document.querySelector('input[type=password]').setAttribute('type', 'text');
and in order to turn it back to password field again,(assuming the password field is the 2nd input tag with text type):
document.querySelectorAll('input[type=text]')[1].setAttribute('type', 'password')