change type of input field with jQuery
$(document).ready(function() { // #login-box password field $(‘#password’).attr(‘type’, ‘text’); $(‘#password’).val(‘Password’); }); This is supposed to change the #password input field (with id=”password”) that is … Read more