| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- jquery.inputmask changelog
- ==========================
- version 0.1.9
- - allow re-masking with another mask, when their is already a mask in place.
- ex.
- $(input).inputmask('d/m/y');
- ... do some stuff ...
- $(input).inputmask('999999999999'); // => input mask changes to the new mask and applies it to it's value
- version 0.2.0
- - make entering the textbox via mouseclick or via tab key behave like a normal input
- version 0.2.1
- - avoid needless checking of the value
- version 0.2.2
- - update doubleclick behavior
- version 0.2.3
- - ui.datepicker fix
- version 0.2.5
- - (simple) optional masks ex: $(selector).inputmask('9999[aaaa]9999');
- version 0.2.8a
- - removed optional mask implementation
- version 0.2.8b
- - added base implementation of numeric inputmask
- version 0.3.1
- - added clearMaskOnLostFocus option
|