hideShowPassword
Because life's too short to waste time re-typing passwords.
Inspired by a pattern seen in Polar, IE 10+ and LinkedIn and documented by Luke W, hideShowPassword lets you easily hide and show passwords via JavaScript or a nifty inset toggle.
The plugin works in any browser that supports resetting the type
attribute of <input>
elements (pretty much everything newer than IE8). The plugin should fall back gracefully in cases where this is not supported.
Installation
Include the plugin after you've included jQuery:
If Modernizr is also included, the plugin's touch enhancements will default to the value of Modernizr.touchevents
.
npm and Browserify
Usingnpm install --save jquery
npm install --save hideshowpassword
var $ = ;;
Bower
Usingbower install hideshowpassword
Usage
The plugin acts on <input>
elements (typically password fields):
Showing, hiding and toggling
You can quickly show, hide or toggle the visibility of the field's contents:
; // Reveal; // Hide; // Toggle
These are all shorthand versions of the hideShowPassword
method:
; // Reveal; // Hide; // Toggle
Enabling the inner toggle button
The inner toggle functionality tends to steal the show for this plugin. You can pass it along as the second argument of the hideShowPassword
method:
// Reveal password by default and create an inner toggle;
Or as the first argument of any of the shorthand methods:
// Reveal password by default and create an inner toggle;
If you would like the inner toggle to be hidden until a specific event, you can pass along that event as a string instead:
// Hide the inner toggle till the #password element is focused;
Specifying more options
Any additional options may be modified by passing along an object as the last argument of any of the aformentioned methods. Here's the previous example, but with a custom class for the toggle:
;
In fact, we could pass along all of these arguments as a single object if we want:
;
There are many options available if your project's needs are particularly unique.
Events
If you need to respond to changes to the password field's visibility, you can use any of the following events:
;
Options
Here are all of the available options and their defaults:
;
You may override these defaults by manipulating the $.fn.hideShowPassword.defaults
object:
$;
Known Issues
Competing controls in IE10+ (Windows 8)
Internet Explorer 10 introduced its own controls for password and text input fields that sometimes compete with the inner toggle functionality of this plugin. Thankfully, they are easily overwritten using CSS:
Error when debugging IE8 or earlier in IE9+ Developer Tools
For some reason the plugin returns a false positive when feature-testing unless honest-to-goodness IE8 or earlier is used.
Toggle quirks in invisible elements
If you use the inner toggle feature on an invisible element, it may not have enough information to correctly style the wrapper and toggle elements. It's recommended that you delay instantiation of the plugin until the elements are visible.
Here's a hypothetical example using a Bootstrap modal:
;
History
- 2.2.0: Expose defaults for easier overrides (#60, #61)
- 2.1.0: Add
triggerOnToggle
feature (#56) - 2.0.11: Fix for Bower install on Windows (#44)
- 2.0.10: Update Modernizr test (#42)
- 2.0.9: Add
title
attributes to toggle by default (#41) - 2.0.8: Fixing bloated bundles bug (#39)
- 2.0.7: Fixing
inheritStyles
bug (#34) - 2.0.6: Revising npm package name (#28)
- 2.0.5: Revising npm package repo URL (#28)
- 2.0.4: Namespaced events (#20), npm support (#21)
- 2.0.3: Removed errant
console.log
call (#13) - 2.0.2:
className
option now instantiates oninit
(#11) - 2.0.1: Fix for missing innerElementStyles
- 2.0.0: Major rewrite with better accessibility and deeper options
- 1.0.3: Added wrapperWidth option
- 1.0.2: Uses deep merge for options
- 1.0.1: Added AMD support
- 1.0.0: Voila!
License
Released under the MIT License.
This repository contains other libraries that may or may not fall under the same license: