Masked Input Plugin RC3

I found a few more issues that needed hashing out for the Masked Input Plugin for jQuery. This release also changes the api per the recommendations of the jQuery community. The reason for the change is to blend with the jQuery library. The main function was changed to a verb since it is an action and the other public method was moved into a namespace.

Here are the changes for this release:

  • 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 Plugin RC2

I've released another revision to my Masked Input Plugin for jQuery. This is the 2nd release candidate, and it should be pretty stable. I made a few code changes, so I would like to verify that all is well with the plugin before it goes 1.0

The following is a list of changes for this release.

  • Now supports user defined placeholder characters by calling "$.AddMaskDefinition(char,regex)" Please see the Eye Prescription example above.
  • Fixed a bug where backspace from the first character position deleted the mask.
  • General code cleanup.

Masked Input Plugin RC1

I'm getting there. I've released another revision to my Masked Input Plugin for jQuery. I'm calling this release candidate 1 because this is the feature set I wish to implement for v1.0 and I don't anticipate any breaking api changes.

The following is a list of changes for this release.

  • 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.

Masked Input Plugin Beta 2a

I've released a minor update to the second beta of my Masked Input Plugin for jQuery. This release fixes a small bug where the mask disappears on focus when the input box has no data.

Masked Input Plugin Beta 2

I'm proud to announce the second beta of my Masked Input Plugin for jQuery. This release fixes a few bugs from Beta 1 and adds a few features.

The following is a list of changes for this release.

  • BREAKING CHANGE: If you were using the optional placeholder argument, you will need to change it to a hashmap syntax. Please see the example above for reference.
  • Fixed an issue with pasted values not persisting after a blur/focus.
  • Added an optional user defined function to execute when the mask has been completed. I'm using this for my personal projects to advance focus to another area of the form, but this could also be used to validate the value inside the input box. Please see example above.
  • Fixed the naming convention to conform to the jQuery standard of jquery.pluginname.js
  • Moved the project files to a more logical location on the web server.

« Previous PageNext Page »