| 12345678910111213141516171819 |
- /*
- Input Mask plugin extensions
- http://github.com/RobinHerbots/jquery.inputmask
- Copyright (c) 2010 - 2012 Robin Herbots
- Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
- Version: 1.2.0
- Optional extensions on the jquery.inputmask base
- */
- (function($) {
- //extra definitions
- $.extend($.inputmask.defaults.definitions, {
- 'A': { //auto uppercasing
- validator: "[A-Za-z]",
- cardinality: 1,
- casing: "upper"
- }
- });
- })(jQuery);
|