Skip to content

Instantly share code, notes, and snippets.

@kvn1234
Created January 22, 2019 12:01
Show Gist options
  • Save kvn1234/fe76665ce6aa6b31563f6233287b6d2e to your computer and use it in GitHub Desktop.
Save kvn1234/fe76665ce6aa6b31563f6233287b6d2e to your computer and use it in GitHub Desktop.
Show/hide password field with Jquery simplified
$('.reveal').on('click', function() {
var reveal = '.' + $(this).attr('id'), // reveal's id *should* be to-be-revealed's class
type = $(reveal).attr('type') === 'password' ? 'text' : 'password';
$(reveal).attr('type', type);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment