Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Releases for Masked Input


Masked Input 1.1.4

Download: jquery.maskedinput-1.1.4.js.txt
Size: 7.35 KB
md5_file hash: b7f3ea8b2af9c1803033e91a3f899b91
First released: July 31, 2008 - 3:45pm

Fixed a bug that would occur when the mask characters match the criteria of the first placeholder character(s). The mask characters would end up repeated as user input.

Masked Input 1.1.3

Download: jquery.maskedinput-1.1.3.js.txt
Size: 7.34 KB
md5_file hash: b618fe42a9eef0638f3678f13bc8d01f
First released: April 17, 2008 - 4:37am

Fixed a bug where the buffer wasn’t being cleared properly, causing characters that had been shifted to be duplicated.

Masked Input 1.1.2

Download: jquery.maskedinput-1.1.2.js.txt
Size: 7.53 KB
md5_file hash: dd1b3120d74e7458debe1853951f8d70
First released: November 29, 2007 - 10:37pm
  • Fixed a bug in Mac Firefox with backspacing.
  • Fixed a bug where delete at end of mask produced an extra
    placeholder character.
  • Exposed the caret positioning and retrieval methods as a jQuery
    function extension. You can now call $().caret() to get a caret
    position and $().caret(start [,end]) to set a caret position.

Masked Input 1.1.1

Download: jquery.maskedinput-1.1.1.js_0.txt
Size: 7.38 KB
md5_file hash: 33d3a14bdb92d7986ca03718e155c78f
First released: October 5, 2007 - 10:06pm
Last updated: October 5, 2007 - 10:07pm

* NEW FEATURE: unmask() method to remove masking for a previously masked input.
* Safari cursor position fix.
* Cursor position behavior change: Cursor goes to the end of the input on a completed input. Cursor goes to the first placeholder position on a blank input.
* Fixed improper escaping of certain mask characters.
* Code refactoring to reduce size and complexity.

Masked Input 1.0.0

Download: jquery.maskedinput-1.0.js_0.txt
Size: 6.79 KB
md5_file hash: da4c4e089d4eb63d427db261c6a0d27c
First released: July 25, 2007 - 8:18pm

This release just has some minor cosmetic code changes.

Masked Input 1.0.0

Download: jquery.maskedinput-1.0.js.txt
Size: 6.79 KB
md5_file hash: da4c4e089d4eb63d427db261c6a0d27c
First released: July 25, 2007 - 8:15pm

This release just has some minor cosmetic code changes.

Masked Input 0.5.0-rc3

Download: jquery.maskedinput.js_5.txt
Size: 6.79 KB
md5_file hash: 8fb0950a3491be42a1d5d49d8fbc4fbd
First released: July 2, 2007 - 7:59pm
  • BREAKING CHANGE: The mask function has been changed to more closely match the style of the jQuery library. Instead of calling .maskedinput(), you will need to call .mask(). Additionally the .AddMaskDefinition() has been moved to a namespace and renamed. Instead, you should make a call to .mask.addPlaceholder().
  • Fixed a bug where the buffer was wiped when text was selected and a non-typeable character was pressed.
  • Fixed a bug where the buffer was not cleared, but the text was when pressing the escape key.
  • More code cleanup.

Masked Input 0.4.0-rc2

Download: jquery.maskedinput.js_4.txt
Size: 6.7 KB
md5_file hash: b2f46da9f9e489fa85e0aa7a6b310611
First released: June 27, 2007 - 9:19pm
  • Now supports user defined placeholder characters by calling “$.AddMaskDefinition(char,regex)” .
  • Fixed a bug where backspace from the first character position deleted the mask.
  • General code cleanup.

Masked Input 0.3.1-rc1a

Download: jquery.maskedinput.js_3.txt
Size: 7.01 KB
md5_file hash: cc6bee713a1920082ae4b28e42ac8f24
First released: June 22, 2007 - 8:32pm
  • Corrected the kludgey syntax for the optional mask completed function. You no longer need to pass an argument to your function to gain access to the input making the call. You can now simply reference “this”. Please see the above corrected example.

Masked Input 0.3.0-rc1

Download: jquery.maskedinput.js_2.txt
Size: 6.77 KB
md5_file hash: 12fcd2d7a4ae4b5eb0728b0121afb04d
First released: June 21, 2007 - 9:51pm
Last updated: June 21, 2007 - 9:51pm

* Fixed a Safari issue where backspace deleted wrong characters and messed up cursor position.
* Fixed an issue where pre-filled input (value=”something”) was deleted on focus.