Guest User

Untitled

a guest
Dec 11th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2.  
  3.  
  4. $("#check_your_password").change( function() {
  5. var $input = $('input.show_pwd');
  6. var change = $(this).is(":checked") ? "text" : "password";
  7. var rep = $("<input type='" + change + "' />")
  8. .attr("id", $input.attr("id"))
  9. .attr("name", $input.attr("name"))
  10. .attr('class', $input.attr('class'))
  11. .val($input.val())
  12. .insertBefore($input);
  13. $input.remove();
  14. $input = rep;
  15. });
  16.  
  17. /*
  18. <input type='password' id='check_your_password' />
  19. */
Add Comment
Please, Sign In to add comment