Skip to content

Instantly share code, notes, and snippets.

@lukasklein
Created October 27, 2012 09:56
Show Gist options
  • Save lukasklein/3963854 to your computer and use it in GitHub Desktop.
Save lukasklein/3963854 to your computer and use it in GitHub Desktop.
Toggle password field
$(function() {
$('input[type="password"]')
.each(function() {
var that = this;
$(this).after($('<input>')
.attr('type', 'checkbox')
.click(function() {
that.type = (that.type === 'password' ? 'text' : 'password');
})
.after($('<span>'))
.text('Show'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment