Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

inputmask-beta-5

zainalmustofa17MIT5.0.0-beta.231.1

Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.

form, input, inputmask, jquery, jquery-plugin, mask, plugins

readme

Inputmask

Copyright (c) 2010 - 2019 Robin Herbots Licensed under the MIT license (http://opensource.org/licenses/mit-license.php)

donate

NPM Version Dependency Status devDependency Status

Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.

An inputmask helps the user with the input by ensuring a predefined format. This can be useful for dates, numerics, phone numbers, ...

Highlights:

  • easy to use
  • optional parts anywere in the mask
  • possibility to define aliases which hide complexity
  • date / datetime masks
  • numeric masks
  • lots of callbacks
  • non-greedy masks
  • many features can be enabled/disabled/configured by options
  • supports readonly/disabled/dir="rtl" attributes
  • support data-inputmask attribute(s)
  • alternator-mask
  • regex-mask
  • dynamic-mask
  • preprocessing-mask
  • JIT-masking
  • value formatting / validating without input element
  • AMD/CommonJS support
  • dependencyLibs: vanilla javascript, jQuery, jqlite
  • Android support

Demo page see http://robinherbots.github.io/Inputmask

Thanks to Jetbrains for providing a free license for their excellent Webstorm IDE.

Setup

dependencyLibs

Inputmask can run against different javascript libraries. You can choose between:

  • inputmask.dependencyLib (vanilla)
  • inputmask.dependencyLib.jquery
  • inputmask.dependencyLib.jqlite
  • .... (others are welcome)

Classic web with <script> tag

Include the js-files which you can find in the dist folder.

Inputmask with jQuery as dependencylib.

<script src="jquery.js"></script>
<script src="dist/jquery.inputmask.js"></script>

Inputmask with vanilla dependencylib.

<script src="dist/inputmask.js"></script>

If you like to automatically bind the inputmask to the inputs marked with the data-inputmask- ... attributes you may also want to include the inputmask.binding.js

<script src="dist/bindings/inputmask.binding.js"></script>

webpack

Install the package

npm install inputmask --save
Install the latest beta version
npm install inputmask@next --save

In your modules

If you want to include the Inputmask and all extensions.

var Inputmask = require('inputmask');

//es6
import Inputmask from "inputmask";

For individual extensions. Every extension exports the Inputmask, so you only need to import the extensions. See example.

require("inputmask/lib/extensions/inputmask.numeric.extensions");
var Inputmask = require("inputmask/lib/extensions/inputmask.date.extensions");

//es6
import "inputmask/lib/extensions/inputmask.numeric.extensions";
import Inputmask from "inputmask/lib/extensions/inputmask.date.extensions";

Selecting the dependencyLib

By default the vanilla dependencyLib is used. You can select another dependency by creating an alias in the webpack.config.

 resolve: {
        alias: {
            "./dependencyLibs/inputmask.dependencyLib": "./dependencyLibs/inputmask.dependencyLib.jquery"
        }
    },

Usage

via Inputmask class

var selector = document.getElementById("selector");

var im = new Inputmask("99-9999999");
im.mask(selector);

//or

Inputmask({"mask": "(999) 999-9999", .... other options .....}).mask(selector);
Inputmask("9-a{1,3}9{1,3}").mask(selector);
Inputmask("9", { repeat: 10 }).mask(selector);

Inputmask({ regex: "\\d*" }).mask(selector);
Inputmask({ regex: String.raw`\d*` }).mask(selector);

via jquery plugin

$(document).ready(function(){
  $(selector).inputmask("99-9999999");  //static mask
  $(selector).inputmask({"mask": "(999) 999-9999"}); //specifying options
  $(selector).inputmask("9-a{1,3}9{1,3}"); //mask with dynamic syntax
});

via data-inputmask attribute

<input data-inputmask="'alias': 'datetime'" />
<input data-inputmask="'mask': '9', 'repeat': 10, 'greedy' : false" />
<input data-inputmask="'mask': '99-9999999'" />
$(document).ready(function(){
  $(":input").inputmask();
  or
  Inputmask().mask(document.querySelectorAll("input"));
});

Any option can also be passed through the use of a data attribute. Use data-inputmask-<the name of the option>="value"

<input id="example1" data-inputmask-clearmaskonlostfocus="false" />
<input id="example2" data-inputmask-regex="[a-za-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?" />
$(document).ready(function(){
  $("#example1").inputmask("99-9999999");
  $("#example2").inputmask();
});

Allowed HTML-elements

  • <input type="text">
  • <input type="search">
  • <input type="tel">
  • <input type="url">
  • <input type="password">
  • <div contenteditable="true"> (and all others supported by contenteditable)
  • <textarea>
  • any html-element (mask text content or set maskedvalue with jQuery.val)

The allowed input types are defined in the supportsInputType option. Also see (input-type-ref)

Default masking definitions

  • 9 : numeric
  • a : alphabetical
  • * : alphanumeric

There are more definitions defined within the extensions.
You can find info within the js-files or by further exploring the options.

Masking types

Static masks

These are the very basic of masking. The mask is defined and will not change during the input.

$(document).ready(function(){
  $(selector).inputmask("aa-9999");  //static mask
  $(selector).inputmask({mask: "aa-9999"});  //static mask
});

Optional masks

It is possible to define some parts in the mask as optional. This is done by using [ ].

Example:

$('#test').inputmask('(99) 9999[9]-9999');

This mask wil allow input like (99) 99999-9999 or (99) 9999-9999.

Input => 12123451234 mask => (12) 12345-1234 (trigger complete)
Input => 121234-1234 mask => (12) 1234-1234 (trigger complete)
Input => 1212341234 mask => (12) 12341-234_ (trigger incomplete)

skipOptionalPartCharacter

As an extra there is another configurable character which is used to skip an optional part in the mask.

skipOptionalPartCharacter: " "

Input => 121234 1234 mask => (12) 1234-1234 (trigger complete)

When clearMaskOnLostFocus: true is set in the options (default), the mask will clear out the optional part when it is not filled in and this only in case the optional part is at the end of the mask.

For example, given:

$('#test').inputmask('999[-AAA]');

While the field has focus and is blank, users will see the full mask ___-___. When the required part of the mask is filled and the field loses focus, the user will see 123. When both the required and optional parts of the mask are filled out and the field loses focus, the user will see 123-ABC.

Optional masks with greedy false

When defining an optional mask together with the greedy: false option, the inputmask will show the smallest possible mask as input first.

$(selector).inputmask({ mask: "9[-9999]", greedy: false });

The initial mask shown will be "_**" instead of "**-___".

Dynamic masks

Dynamic masks can change during the input. To define a dynamic part use { }.

{n} => n repeats {n|j} => n repeats, with j jitmasking {n,m} => from n to m repeats {n,m|j} => from n to m repeats, with j jitmasking

Also {+} and {*} is allowed. + start from 1 and * start from 0.

$(document).ready(function(){
  $(selector).inputmask("aa-9{4}");  //static mask with dynamic syntax
  $(selector).inputmask("aa-9{1,4}");  //dynamic mask ~ the 9 def can be occur 1 to 4 times

  //email mask
  $(selector).inputmask({
    mask: "*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}[.*{2,6}][.*{1,2}]",
    greedy: false,
    onBeforePaste: function (pastedValue, opts) {
      pastedValue = pastedValue.toLowerCase();
      return pastedValue.replace("mailto:", "");
    },
    definitions: {
      '*': {
        validator: "[0-9A-Za-z!#$%&'*+/=?^_`{|}~\-]",
        casing: "lower"
      }
    }
  });
  //decimal mask
   Inputmask("(.999){+|1},00", {
        positionCaretOnClick: "radixFocus",
        radixPoint: ",",
        _radixDance: true,
        numericInput: true,
        placeholder: "0",
        definitions: {
            "0": {
                validator: "[0-9\uFF11-\uFF19]"
            }
        }
   }).mask(selector);
});

Alternator masks

The alternator syntax is like an OR statement. The mask can be one of the 3 choices specified in the alternator.

To define an alternator use the |. ex: "a|9" => a or 9 "(aaa)|(999)" => aaa or 999 "(aaa|999|9AA)" => aaa or 999 or 9AA

Also make sure to read about the keepStatic option.

$("selector").inputmask("(99.9)|(X)", {
  definitions: {
    "X": {
      validator: "[xX]",
      casing: "upper"
    }
  }
});

or

$("selector").inputmask({
  mask: ["99.9", "X"],
  definitions: {
    "X": {
      validator: "[xX]",
      casing: "upper"
    }
  }
});

Preprocessing masks

You can define the mask as a function which can allow to preprocess the resulting mask. Example sorting for multiple masks or retrieving mask definitions dynamically through ajax. The preprocessing fn should return a valid mask definition.

$(selector).inputmask({ mask: function () { /* do stuff */ return ["[1-]AAA-999", "[1-]999-AAA"]; }});

JIT Masking

Just in time masking. With the jitMasking option you can enable jit masking. The mask will only be visible for the user entered characters. Default: false

Value can be true or a threshold number or false.

Inputmask("datetime", { jitMasking: true }).mask(selector);

Define custom definitions

You can define your own definitions to use in your mask.
Start by choosing a masksymbol.

validator(chrs, maskset, pos, strict, opts)

Next define your validator. The validator can be a regular expression or a function.

The return value of a validator can be true, false or a command object.

Options of the command object

  • pos : position to insert
  • c : character to insert
  • caret : position of the caret
  • remove : position(s) to remove

    • pos or [pos1, pos2]
  • insert : position(s) to add :

    • { pos : position to insert, c : character to insert, fromIsValid : true/false, strict : true/false }
    • [{ pos : position to insert, c : character to insert, fromIsValid : true/false, strict : true/false }, { ...}, ... ]

    fromIsValid & strict

  • refreshFromBuffer :

    • true => refresh validPositions from the complete buffer
    • { start: , end: } => refresh from start to end
  • rewritePosition: rewrite the maskPos within the isvalid function

definitionSymbol

When you insert or delete characters, they are only shifted when the definition type is the same. This behavior can be overridden by giving a definitionSymbol. (see example x, y, z, which can be used for ip-address masking, the validation is different, but it is allowed to shift the characters between the definitions)

Inputmask.extendDefinitions({
  'f': {  //masksymbol
    "validator": "[0-9\(\)\.\+/ ]"
  },
  'g': {
    "validator": function (chrs, buffer, pos, strict, opts) {
      //do some logic and return true, false, or { "pos": new position, "c": character to place }
    }
  },
  'j': { //basic year
    validator: "(19|20)\\d{2}"
  },
  'x': {
    validator: "[0-2]",
    definitionSymbol: "i" //this allows shifting values from other definitions, with the same masksymbol or definitionSymbol
  },
  'y': {
    validator: function (chrs, buffer, pos, strict, opts) {
      var valExp2 = new RegExp("2[0-5]|[01][0-9]");
      return valExp2.test(buffer[pos - 1] + chrs);
    },
    definitionSymbol: "i"
  },
  'z': {
    validator: function (chrs, buffer, pos, strict, opts) {
      var valExp3 = new RegExp("25[0-5]|2[0-4][0-9]|[01][0-9][0-9]");
      return valExp3.test(buffer[pos - 2] + buffer[pos - 1] + chrs);
    },
    definitionSymbol: "i"
  }
});

placeholder

Specify a placeholder for a definition. This can also be a function.

set defaults

Defaults can be set as below.

Inputmask.extendDefaults({
  'autoUnmask': true
});
Inputmask.extendDefinitions({
  'A': {
    validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
    casing: "upper" //auto uppercasing
  },
  '+': {
    validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
    casing: "upper"
  }
});
Inputmask.extendAliases({
  'numeric': {
    mask: "r",
    greedy: false,
    ...
  }
});

But if the property is defined within an alias you need to set it for the alias definition. This is also for default plugin options. If the alias definitions extends on default options, you can only override it at alias level.

Inputmask.extendAliases({
  'numeric': {
    autoUnmask: true,
    allowPlus: false,
    allowMinus: false
  }
});

However, the preferred way to alter properties for an alias is by creating a new alias which inherits from the default alias definition.

Inputmask.extendAliases({
  'myNum': {
    alias: "numeric",
    placeholder: '',
    allowPlus: false,
    allowMinus: false
  }
});

Once defined, you can call the alias by:

Inputmask("myNum").mask(selector);

All callbacks are implemented as options. This means that you can set general implementations for the callbacks by setting a default.

Inputmask.extendDefaults({
  onKeyValidation: function(key, result){
    if (!result){
      alert('Your input is not valid')
    }
  }
});

Methods:

mask(elems)

Create a mask for the input.

$(selector).inputmask({ mask: "99-999-99"});

or

Inputmask({ mask: "99-999-99"}).mask(document.querySelectorAll(selector));

or

Inputmask("99-999-99").mask(document.querySelectorAll(selector));

or

var im = new Inputmask("99-999-99");
im.mask(document.querySelectorAll(selector));

or

Inputmask("99-999-99").mask(selector);

unmaskedvalue

Get the unmaskedvalue

$(selector).inputmask('unmaskedvalue');

or

var input = document.getElementById(selector);
if (input.inputmask)
  input.inputmask.unmaskedvalue()

Value unmasking

Unmask a given value against the mask.

var unformattedDate = Inputmask.unmask("23/03/1973", { alias: "dd/mm/yyyy"}); //23031973

remove

Remove the inputmask.

$(selector).inputmask('remove');

or

var input = document.getElementById(selector);
if (input.inputmask)
  input.inputmask.remove()

or

Inputmask.remove(document.getElementById(selector));

getemptymask

return the default (empty) mask value

$(document).ready(function(){
  $("#test").inputmask("999-AAA");
  var initialValue = $("#test").inputmask("getemptymask");  // initialValue  => "___-___"
});

hasMaskedValue

Check whether the returned value is masked or not; currently only works reliably when using jquery.val fn to retrieve the value

$(document).ready(function(){
  function validateMaskedValue(val){}
  function validateValue(val){}

  var val = $("#test").val();
  if ($("#test").inputmask("hasMaskedValue"))
    validateMaskedValue(val);
  else
    validateValue(val);
});

isComplete

Verify whether the current value is complete or not.

$(document).ready(function(){
  if ($(selector).inputmask("isComplete")){
    //do something
  }
});

getmetadata

The metadata of the actual mask provided in the mask definitions can be obtained by calling getmetadata. If only a mask is provided the mask definition will be returned by the getmetadata.

$(selector).inputmask("getmetadata");

setvalue

The setvalue functionality is to set a value to the inputmask like you would do with jQuery.val, BUT it will trigger the internal event used by the inputmask always, whatever the case. This is particular usefull when cloning an inputmask with jQuery.clone. Cloning an inputmask is not a fully functional clone. On the first event (mouseenter, focus, ...) the inputmask can detect if it where cloned and can reactivate the masking. However when setting the value with jQuery.val there is none of the events triggered in that case. The setvalue functionality does this for you.

$(selector).inputmask("setvalue", value);

var selector = document.getElementById("selector");
selector.inputmask.setValue(value);

Inputmask.setValue(selector, value);

option(options, noremask)

Get or set an option on an existing inputmask. The option method is intented for adding extra options like callbacks, etc at a later time to the mask.

When extra options are set the mask is automatically reapplied, unless you pas true for the noremask argument.

Set an option

document.querySelector("#CellPhone").inputmask.option({
  onBeforePaste: function (pastedValue, opts) {
    return phoneNumOnPaste(pastedValue, opts);
  }
});
$("#CellPhone").inputmask("option", {
  onBeforePaste: function (pastedValue, opts) {
    return phoneNumOnPaste(pastedValue, opts);
  }
})

format

Instead of masking an input element it is also possible to use the inputmask for formatting given values. Think of formatting values to show in jqGrid or on other elements then inputs.

var formattedDate = Inputmask.format("2331973", { alias: "datetime", inputFormat: "dd/mm/yyyy"});

isValid

Validate a given value against the mask.

var isValid = Inputmask.isValid("23/03/1973", { alias: "datetime", inputFormat: "dd/mm/yyyy"});

Options:

placeholder

Change the mask placeholder. Default: "_"

Instead of "_", you can change the unfilled characters mask as you like, simply by adding the placeholder option.
For example, placeholder: " " will change the default autofill with empty values

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "placeholder": "*" });
});

or a multi-char placeholder

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "placeholder": "dd/mm/yyyy" });
});

optionalmarker

Definition of the symbols used to indicate an optional part in the mask.

optionalmarker: { start: "[", end: "]" }

quantifiermarker

Definition of the symbols used to indicate a quantifier in the mask.

quantifiermarker: { start: "{", end: "}" }

groupmarker

Definition of the symbols used to indicate a group in the mask.

groupmarker: { start: "(", end: ")" }

alternatormarker

Definition of the symbols used to indicate an alternator part in the mask.

alternatormarker: "|"

escapeChar

Definition of the symbols used to escape a part in the mask.

escapeChar: "\\"

See escape special mask chars

mask

The mask to use.

Inputmask({ mask: "9{*}").mask(selector);

regex

Use a regular expression as a mask

Inputmask({ regex: "[0-9]*" }).mask(selector);

When using shorthands be aware that you need to double escape or use String.raw with a string literal.

Inputmask({ regex: "\\d*" }).mask(selector);
~
Inputmask({ regex: String.raw`\d*` }).mask(selector);

oncomplete

Execute a function when the mask is completed

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "oncomplete": function(){ alert('inputmask complete'); } });
});

onincomplete

Execute a function when the mask is incomplete. Executes on blur.

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "onincomplete": function(){ alert('inputmask incomplete'); } });
});

oncleared

Execute a function when the mask is cleared.

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "oncleared": function(){ alert('inputmask cleared'); } });
});

repeat

Mask repeat function. Repeat the mask definition x-times.

$(document).ready(function(){
  $("#number").inputmask({ "mask": "9", "repeat": 10 });  // ~ mask "9999999999"
});

greedy

Default: false Toggle to allocate as much possible or the opposite. Non-greedy repeat function.

$(document).ready(function(){
  $("#number").inputmask({ "mask": "9", "repeat": 10, "greedy": false });  // ~ mask "9" or mask "99" or ... mask "9999999999"
});

With the non-greedy option set to false, you can specify * as repeat. This makes an endless repeat.

autoUnmask

Automatically unmask the value when retrieved.
Default: false.

When setting this option to true the plugin also expects the initial value from the server to be unmasked.

removeMaskOnSubmit

Remove the mask before submitting the form.
Default: false

clearMaskOnLostFocus

Remove the empty mask on blur or when not empty removes the optional trailing part Default: true

$(document).ready(function(){
  $("#ssn").inputmask("999-99-9999",{placeholder:" ", clearMaskOnLostFocus: true }); //default
});

insertMode

Toggle to insert or overwrite input.
Default: true.
This option can be altered by pressing the Insert key.

clearIncomplete

Clear the incomplete input on blur

$(document).ready(function(){
  $("#date").inputmask("99/99/9999",{ "clearIncomplete": true });
});

aliases

Definitions of aliases.

With an alias you can define a complex mask definition and call it by using an alias name. So this is mainly to simplify the use of your masks. Some aliases found in the extensions are: email, currency, decimal, integer, date, datetime, dd/mm/yyyy, etc.

First you have to create an alias definition. The alias definition can contain options for the mask, custom definitions, the mask to use etc.

When you pass in an alias, the alias is first resolved and then the other options are applied. So you can call an alias and pass another mask to be applied over the alias. This also means that you can write aliases which "inherit" from another alias.

Some examples can be found in jquery.inputmask.xxx.extensions.js

use:

$("#date").inputmask("datetime");

or

$("#date").inputmask({ alias: "datetime"});

You can also call an alias and extend it with some more options

$("#date").inputmask("datetime", { "clearIncomplete": true });

or

$("#date").inputmask({ alias: "datetime", "clearIncomplete": true });

alias

The alias to use.

$("#date").inputmask({ alias: "email"});

onKeyDown

Callback to implement autocomplete on certain keys for example

Function arguments: event, buffer, caretPos, opts
Function return:

onBeforeMask

Executes before masking the initial value to allow preprocessing of the initial value.

Function arguments: initialValue, opts
Function return: processedValue

$(selector).inputmask({
  alias: 'phonebe',
  onBeforeMask: function (value, opts) {
    var processedValue = value.replace(/^0/g, "");
    if (processedValue.indexOf("32") > 1 ||     processedValue.indexOf("32") == -1) {
      processedValue = "32" + processedValue;
    }

    return processedValue;
  }
});

onBeforePaste

This callback allows for preprocessing the pasted value before actually handling the value for masking. This can be usefull for stripping away some characters before processing.

Function arguments: pastedValue, opts
Function return: processedValue

$(selector).inputmask({
  mask: '9999 9999 9999 9999',
  placeholder: ' ',
  showMaskOnHover: false,
  showMaskOnFocus: false,
  onBeforePaste: function (pastedValue, opts) {
    var processedValue = pastedValue;

    //do something with it

    return processedValue;
  }
});

You can also disable pasting a value by returning false in the onBeforePaste call.

Default: Calls the onBeforeMask

onBeforeWrite

Executes before writing to the masked element

Use this to do some extra processing of the input. This can be usefull when implementing an alias, ex. decimal alias, autofill the digits when leaving the inputfield.

Function arguments: event, buffer, caretPos, opts
Function return: command object (see Define custom definitions)

onUnMask

Executes after unmasking to allow post-processing of the unmaskedvalue.

Function arguments: maskedValue, unmaskedValue
Function return: processedValue

$(document).ready(function(){
  $("#number").inputmask("decimal", { onUnMask: function(maskedValue, unmaskedValue) {
    //do something with the value
    return unmaskedValue;
  }});
});

showMaskOnFocus

Shows the mask when the input gets focus. (default = true)

$(document).ready(function(){
  $("#ssn").inputmask("999-99-9999",{ showMaskOnFocus: true }); //default
});

To make sure no mask is visible on focus also set the showMaskOnHover to false. Otherwise hovering with the mouse will set the mask and will stay on focus.

showMaskOnHover

Shows the mask when hovering the mouse. (default = true)

$(document).ready(function(){
  $("#ssn").inputmask("999-99-9999",{ showMaskOnHover: true }); //default
});

onKeyValidation

Callback function is executed on every keyvalidation with the key & result as parameter.

$(document).ready(function(){
  $("#ssn").inputmask("999-99-9999", {
    onKeyValidation: function (key, result) {
      console.log(key + " - " + result);
    }
  });
});

skipOptionalPartCharacter

numericInput

Numeric input direction. Keeps the caret at the end.

$(document).ready(function(){
  $(selector).inputmask('€ 999.999.999,99', { numericInput: true });    //123456  =>  € ___.__1.234,56
});

rightAlign

Align the input to the right

By setting the rightAlign you can specify to right align an inputmask. This is only applied in combination op the numericInput option or the dir-attribute. Default is true.

$(document).ready(function(){
  $(selector).inputmask('decimal', { rightAlign: false });  //disables the right alignment of the decimal input
});

undoOnEscape

Make escape behave like undo. (ctrl-Z)
Pressing escape reverts the value to the value before focus.
Default: true

radixPoint (numerics)

Define the radixpoint (decimal separator)
Default: ""

groupSeparator (numerics)

Define the groupseparator
Default: ""

keepStatic

Default: null (~false) Use in combination with the alternator syntax Try to keep the mask static while typing. Decisions to alter the mask will be postponed if possible.

ex. $(selector).inputmask({ mask: ["+55-99-9999-9999", "+55-99-99999-9999", ], keepStatic: true });

typing 1212345123 => should result in +55-12-1234-5123 type extra 4 => switch to +55-12-12345-1234

When passing multiple masks (an array of masks) keepStatic is automatically set to true unless explicitly set through the options.

positionCaretOnTab

When enabled the caret position is set after the latest valid position on TAB Default: true

tabThrough

Allows for tabbing through the different parts of the masked field.
Default: false

definitions

ignorables

isComplete

With this call-in (hook) you can override the default implementation of the isComplete function.
Args => buffer, opts Return => true|false

$(selector).inputmask({
  regex: "[0-9]*",
  isComplete: function(buffer, opts) {
    return new RegExp(opts.regex).test(buffer.join(''));
  }
});

postValidation

Hook to postValidate the result from isValid. Usefull for validating the entry as a whole. Args => buffer, pos, currentResult, opts
Return => true|false|command object

preValidation

Hook to preValidate the input. Useful for validating regardless the definition. Args => buffer, pos, char, isSelection, opts, maskset, caretPos => return true/false/command object When return true, the normal validation kicks in, otherwise it is skipped.

staticDefinitionSymbol

The staticDefinitionSymbol option is used to indicate that the static entries in the mask can match a certain definition. Especially usefull with alternators so that static element in the mask can match another alternation.

In the example below we mark the spaces as a possible match for the "i" definition. By doing so the mask can alternate to the second mask even when we typed already "12 3".

Inputmask("(99 99 999999)|(i{+})", {
  definitions: {
    "i": {
      validator: ".",
      definitionSymbol: "*"
    }
  },
  staticDefinitionSymbol: "*"
}).mask(selector);

nullable

Return nothing when the user hasn't entered anything. Default: true

noValuePatching

Disable value property patching Default: false

positionCaretOnClick

Positioning of the caret on click.

Options:

  • none
  • lvp (based on the last valid position (default)
  • radixFocus (position caret to radixpoint on initial click)
  • select (select the whole input)
  • ignore (ignore the click and continue the mask)

Default: "lvp"

casing

Apply casing at the mask-level. Options: null, "upper", "lower" or "title" or callback args => elem, test, pos, validPositions return charValue

casing: function(elem, test, pos, validPositions) {
    do some processing || upper/lower input property in the validPositions
    return elem; //upper/lower element
}

Default: null

inputmode

Default: "verbatim" Specify the inputmode - already in place for when browsers start to support them https://html.spec.whatwg.org/#input-modalities:-the-inputmode-attribute

colorMask

Default: false Create a css styleable mask.

You need to include the inputmask.css in your page to use this option.

See the inputmask.css for more info about the used styling. You can override the Inputmask.prototype.positionColorMask`if you need some custom positioning.

 Inputmask.prototype.positionColorMask = function (input, template) {
                template.style.left = input.offsetLeft + "px";
                template.zIndex = input.zIndex - 1;
           }

disablePredictiveText

Default: false Disables predictive text on mobile devices.

What it does.

  • changes the input type to password => disables predictive text
  • enables the colorMask option which creates a div, which surrounds the input. So we type in the hidden password input and render the mask in the a created div.

To use the colorMask, you need to include the inputmask.css you might need to add some css-tweaks to make it all visually correct in your page.

importDataAttributes

Specify to use the data-inputmask attributes or to ignore them.

If you don't use data attributes you can disable the import by specifying importDataAttributes: false.

Default: true

shiftPositions

Alter the behavior of the char shifting on entry or deletion.

In some cases shifting the mask entries or deletion should be more restrictive.
Ex. date masks. Shifting month to day makes no sense

Default: true

true = shift on the "def" match false = shift on the "nativeDef" match

General

set a value and apply mask

this can be done with the traditional jquery.val function (all browsers) or JavaScript value property for browsers which implement lookupGetter or getOwnPropertyDescriptor

$(document).ready(function(){
  $("#number").val(12345);

  var number = document.getElementById("number");
  number.value = 12345;
});

with the autoUnmaskoption you can change the return of $.fn.val (or value property) to unmaskedvalue or the maskedvalue

$(document).ready(function(){
  $('#<%= tbDate.ClientID%>').inputmask({ "mask": "99/99/9999", 'autoUnmask' : true});    //  value: 23/03/1973
  alert($('#<%= tbDate.ClientID%>').val());    // shows 23031973     (autoUnmask: true)

  var tbDate = document.getElementById("<%= tbDate.ClientID%>");
  alert(tbDate.value);    // shows 23031973     (autoUnmask: true)
});

escape special mask chars

If you want a mask element to appear as a static element you can escape them by \

$(document).ready(function(){
  $("#months").inputmask("m \\months");
});

auto-casing inputmask

You can define within a definition to automatically apply some casing on the entry in an input by giving the casing.
Casing can be null, "upper", "lower" or "title".

Inputmask.extendDefinitions({
  'A': {
    validator: "[A-Za-z]",
    casing: "upper" //auto uppercasing
  },
  '+': {
    validator: "[A-Za-z\u0410-\u044F\u0401\u04510-9]",
    casing: "upper"
  }
});

Include jquery.inputmask.extensions.js for using the A and # definitions.

$(document).ready(function(){
  $("#test").inputmask("999-AAA");    //   => 123abc ===> 123-ABC
});

Supported markup options

RTL attribute

<input id="test" dir="rtl" />

readonly attribute

<input id="test" readonly="readonly" />

disabled attribute

<input id="test" disabled="disabled" />

maxlength attribute

<input id="test" maxlength="4" />

data-inputmask attribute

You can also apply an inputmask by using the data-inputmask attribute. In the attribute you specify the options wanted for the inputmask. This gets parsed with $.parseJSON (for the moment), so be sure to use a well-formed json-string without the {}.

<input data-inputmask="'alias': 'datetime'" />
<input data-inputmask="'mask': '9', 'repeat': 10, 'greedy' : false" />
$(document).ready(function(){
  $(":input").inputmask();
});

data-inputmask-<option> attribute

All options can also be passed through data-attributes.

<input data-inputmask-mask="9" data-inputmask-repeat="10" data-inputmask-greedy="false" />
$(document).ready(function(){
  $(":input").inputmask();
});

jQuery.clone

When cloning a inputmask, the inputmask reactivates on the first event (mouseenter, focus, ...) that happens to the input. If you want to set a value on the cloned inputmask and you want to directly reactivate the masking you have to use $(input).inputmask("setvalue", value)

Be sure to pass true in the jQuery.clone fn to clone with data and events and use jQuery as dependencyLib (https://api.jquery.com/clone/)

Extensions

date & datetime extensions

numeric extensions

other extensions

changelog

Change Log

[5.0.0 - UNRELEASED]

Addition

  • add indian numbering support in numeric alias (indianns alias)

Updates

  • ignore generated statics in revalidateMask
  • fix mask curruption when alternating and using jitmasking
  • Casing option will also allow case insensitive entry for static symbols
  • refactor numeric alias
  • package & bundling
  • enhance regex alternations. ex: [01][0-9]|2[0-3] => ([01][0-9]|2[0-3])
  • extend command object
    • rewritePosition
  • revert insert-mode caret as selection instead of colored caret

Fixed

  • 12Hr Format time Hour error #2121
  • Backspace alters value/mask in datetime #2163
  • Suffix and white-space groupSeparator problem #813
  • Char before quantifier gets duplicated in tests #2152
  • FireFox - mask placeholder doesn't disappear #2138
  • im-insert not valid html #2122
  • No message with HTML5 validation #841
  • Manual input via virtual keyboard doesn't work #2116
  • Can't insert more than 2 letters in Firefox #2114
  • InputMask not getting fresh placeholder value #2111
  • Chrome autofill does not work with Inputmask #1330
  • Paste in inputmask #2088
  • The first character is truncated when masking. #2089
  • No leading zero for single-digit hours KO #2061
  • Only 1st placeholder is displayed for fields with same alias numeric #2060
  • Original placeholder disappear when mouseout in IE #2047
  • Document bug with disabled inputs caused by Firefox 64 and older #2045
  • Behaviour of v3 with hours not possible anymore #1918
  • Unmasked value of datetime alias, if empty, returns the placeholder #2039

[4.0.4 - 2018-12-03]

Addition

  • add url as supported input type

Updates

  • rework jit enabled quantifiers

Fixed

  • restore greedy functionality
  • fix focus and mouseenter behavior in IE

[4.0.3 - 2018-11-07]

Addition

  • numeric.extensions - add inputType option to specify the type of initial value
  • README_numeric.md => Setting initial values

Updates

  • fix window.js for node

Fixed

  • digits: 3 - error on transform #2022
  • "Can not read property 'join' of undefined" when using Inputmask.format #2019
  • Inputmask numeric does no round up when digits is 0 #2018
  • Strange Calendar popup issue in IE Only when used with Daterangepicker #1965
  • incorrect work min max date - #2011, #2013

[4.0.2 - 2018-09-14]

(4.0.1 => 4.0.2 rebuild dist with newer version of uglify #2000)

Updates

Fixed

  • When blur input, inputmask adds attr placeholder to input - #1992
  • Fix endless loop for quantifiers (see tests_dynamic.js - latest unittests) #1983
  • Element keeps the focus to itself in ie11 #1846
  • Changes for min/max options do not get picked up. #1931
  • Behaviour of v3 with hours not possible anymore #1918
  • Multiple alternators #1553
  • jquery.inputmask: clearIncomplete and placeholder don't appear to do anything when array of masks used #1892
  • Problem with delete masked date on iOS #1899
  • Autofill corrupts input on email mask #1908(gl)

[4.0.0 - 2018-05-26]

Addition

  • add support for beforeInput event with inputType (Input Events Level 2 - https://w3c.github.io/input-events/)
  • extend positionCaretOnClick with "ignore" to ignore the click in the input
  • jit enabled dynamic masks
  • add support for input type search
  • new datetime alias
  • extend positionCaretOnClick with "select" to select the whole input on focus
  • add regex option (replaces the Regex alias)
  • CSS Unit Mask #1843

Updates

  • make behavior of [] an {0,1} consistent
  • change default value from greedy option to false
  • fix unmatched alternations in gettests. ("[0-9]{2}|[0-9]{3}" like masks)
  • code cleanup and refactoring
    • enhance determineTestTemplate
    • oncomplete calls
    • merge setValidPosition and stripValidPositions => revalidateMask
    • remove canClearPosition hook
    • change notation of optionalmarker, quantifiermarker, groupmarker
    • drop prevalidator and cardinality support in definitions
    • drop Regex alias
    • drop all date/time related aliases => replaced by new datetime alias
  • improve alternation logic
  • improve inputfallback (Android)
  • better caret handling in colormask
  • disable autocorrect on safari when disablePredictiveText is used
  • rename androidHack option to disablePredictiveText. Make it available for other platforms.

Fixed

  • Both date and time in same masked textbox #1888
  • time input mask min and max #1674
  • Bug: Using backspace when caret is not at the end messes up static placeholders #1525
  • Fast typing text #1872
  • jitMasking + disablePredictiveText causes android browser tab to stuck when clicked on "backspase" #1862
  • Android 6 issue - Samsung device keyboard #1818
  • Method oncomplete doesn't work correctly with jitMasking #1845
  • isComplete in numeric extensions doesn't take into account negationSymbol #1844
  • Email alias - retype @ removes last . #1324
  • When "clearIncomplete: true" and pressing Enter to Submit Form #1839
  • Hang on combination of optional mask and repeat #698
  • Can't remove inputmask on focus? #1820
  • Not able to input 31.12. in DD.MM date input in v4.x #1803
  • problem with two separate alternations #1722
  • colorMask + Remask = Duplicate im-colormask element #1709

Note

Be aware when upgrading from 3.3.11, that the regex alias is removed and that the datetime alias has totally changed. So expect you need todo some changes to your date-masks and regex masks. Also some defaults has changed, so have a read through the changes for this release.

There are still many open issues but postponing the release to resolve all issues will take like another year, while there are already many enhancements available.

[3.3.9 - 2017-10-10]

Updates

  • enhance inputfallback (Android)

Fixes

  • On Android with date mask input mashing up #1708
  • Currency mask works incorrectly on Android Chrome v58 #1617
  • Can't input character at the end if it's also a placeholder on Android #1648

[3.3.8 - 2017-08-24]

Addition

  • Addition \uFF11-\uFF19 character range to 9 definition #1606
  • importDataAttributes option #1633
  • add dot support in regex #1651

Updates

  • pass inputmask object in the callbacks
  • colorMask enhancement: better positioning and more controllable via inputmask.css
  • remove maxLength attribute on android #1490
  • enhance inputfallback (Android)

Fixes

  • Mask appear when I press TAB & showMaskOnFocus: false, showMaskOnHover: false #1198
  • DependencyLib.Event CustomEvent #1642
  • Wrong initial cursor position with Numeric and Prefix #1578
  • Currency mask works incorrectly on Android Chrome v58 #1617
  • Can't input character at the end if it's also a placeholder on Android #1648
  • colorMask - incorrect positioning #1421
  • Object doesn't support property or method '_valueGet' in version 3.3.7 #1645
  • Usage of numericInput in data-inputmask causes reversed value #1640
  • Numeric suffix makes radixPoint disappear on preset value #1638
  • Cannot delete after fill up all the mask Android Chrome browser Jsfiddle #1637

[3.3.7 - 2017-06-09]

Addition

  • allow custom operation in casing option by callback #1565

Updates

  • put back Regex alias extension for legacy support #1611
  • postvalidation cannot set pos of undefined
  • fix undoValue initialization

Fixed

  • Major issue with regex #1611
  • React onChange event doesn't work with Inputmask #1377
  • Currency digits and delete #1351
  • Decimal editing problems #1603
  • UX problem with email mask #1600
  • Force numeric to empty (on blur) with '0' as value #215
  • ndxInitializer.shift is not a function

[3.3.6 - 2017-05-11]

Addition

  • noValuePatching option #1276

Updates

  • drop Regex alias => use the inputmask regex option instead
  • alternator syntax update - regex like alternations is now supported (aa|99|AA) ~ aa or 99 or AA

Fixed

  • NaN with negationSymbol and unmaskAsNumber #1581
  • A dot (.) in Regex Causes Errors #647
  • variable "undoValue" isn't initialized correctly #1519
  • on submit change event is triggered #1392
  • Change Event Problems for Masked Input #1583
  • integer backspace bug when set maxLength attr. #1546
  • Regex with placeholder, not working? #798
  • Visualize regular expressions #1040
  • Mobile phone code update needed for Malaysia #1571
  • suffix bug (regression) #1558
  • 29 february of non leap-year #1567

[3.3.5 - 2017-04-10]

Addition

  • add example webpack setup (thx to Kevin Suen)
  • build-in regex support without extension (WIP)

Updates

  • Change package name to Inputmask to better reflect that Inputmask doesn't require jQuery
  • make removing the inputmask take the autoUnmask option into account
  • enhance inputfallback event (android)
  • restructure project
  • performance updates
    • initialization

Fixed

  • Changes are not reflected back to model when using with Vue2 (mobile) #1468
  • Multiple alternators #1553
  • Weird Issue with decimal masking when value is like 0.55 #1512
  • IE 8 problems with currency and jquery.inputmask.bundle.js #1545
  • Rounding error for numeric aliases #1300
  • Currency InputMask Input Value issue with numericInput: true #1269
  • onCleared event doesn't fire with 'numeric' alias in some case #1495
  • Currency InputMask Input Value issue with numericInput: true #1269
  • Rounding numeric values #1540
  • Casing lower/upper as extend aliases? #1529
  • This line of code returns an unexpected value when unmasking as number #1527
  • Phone Mask Cursor Issue on Chrome on some Androids.. #1490
  • min value issue fix #1177
  • static is a reserved keyword #1479
  • hasOwnProperty check missing in reverseTokens (numericInput) #1486
  • Per-element radixPoint overwrites defaults #1454
  • Form not cleaning correctly when AutoUnmask option is set to true #1442
  • Form can`t submitted with input[name=disabled] #1473

[3.3.4 - 2016-12-22]

Addition

  • extra extension points: analyseMask
  • colorMask option ~ css styleable mask

Updates

  • remove tooltip option
  • remove h,s,d,m,y definitions => use the date/time aliases
  • phone-alias - fine-tune mask sorting
  • make data-inputmask attribute naming configurable (dataAttribute on Inputmask)
  • numeric alias move negation symbols to the edges
  • handle android predictive text enabled
  • rename js/inputmask.dependencyLib.jquery.js to js/inputmask.dependencyLib.js
  • rename dist/inputmask.dependencyLib.jquery.js to dist/inputmask.dependencyLib.js
  • commonjs dep to inputmask.dependencyLib instead to inputmask.dependencyLib.jquery => can be symlinked to another dependencyLib
  • improve inputfallback (Android support)

Fixed

  • IE11 : SCRIPT438: Object doesn't support property or method 'isFinite' #1472
  • () as literal followed by an optional, doubles the optional template #1453
  • Decimal mask excluding zero with custom RadixPoint and GroupSeparator #1418
  • Can't remove dot from the middle of a word #1439
  • Invalid Leap Year dates can be entered #1368
  • jquery.val returns empty value (when using an unsupported input type) #1415
  • Losing the decimal part when the maximum number of digits is reached #1257
  • Not allowing to change existing number to 0 #1381
  • Numbers get swapped when cursor near suffix. #1278
  • androidHack: Caret positioning needs some fine tuning #1412
  • How can I get "-$123.45", not "$-123.45"? #1360
  • Placeholder color #972
  • Other color on placeholder (wrap placeholder in span, using contenteditable?) #873
  • Error on 3.3.3: Uncaught TypeError: Cannot set property 'generatedInput' of undefined #1399
  • ios 8, safari, on first visit unable to enter any characters #826
  • Numerica mask not run in Galaxy S5 + Chrome + Android #1357

[3.3.3 - 2016-09-09] - hotfix

Updates

  • revert moving jquery dependencyLib
  • correct caret positioning - radixFocus & placeholder: ""

Fixed

  • Build failure in heroku after release of 3.3.2 #1384
  • Error with inputMask any case (v3.3.2) #1383

[3.3.2 - 2016-09-09]

Addition

  • mask-level casing => #1352
  • 'casing': 'title' #1277
  • add quantifier syntax for digits option in numeric alias. #1374

Updates

  • add bundle in nuget package
  • change default of positionCaretOnTab to true
  • include min files in nuspecs
  • better filter for input targets in inputmask.binder.js
  • improve alternation selection
  • removed nojumps option
  • update phone alias implementation
    • add unit tests for phonecodes
  • replaced radixFocus option by positionCaretOnClick. Allows choice for behavior of the caret on click. (none, lvp (default), radixFocus)
  • performance updates
    • getmasklength
    • use selective caching in getTests

Fixed

  • Problems with greedy dynamic masks in current version 3.x #1375
  • Croatian phone mask only supports city of Zagreb #1359
  • Pasting to masked input not working on Android #1061
  • Unable to get property 'forwardPosition' of undefined or null reference IE11 #1342
  • Input event doesn't fire in IE #1287
  • Dynamically changing mask based on number of entered characters #1336
  • change addEventListener not fired in IE11 #1310 - inputmask.dependencyLib.js
  • Hide mask's items that have multiple options #678
  • Bug when typing after a fixed character #1299
  • onUnMask is not being called #1291
  • How Can I have caret position on decimal digit(after decimal point) for currency inputmask ? #1282
  • How to implement mask for these numbers? #840 (alternator)
  • 'setvalue' on mask with a suffix results in suffix being doubled, while $.fn.val works fine #1267

[3.3.1] - 2016-04-20

Updates

  • better handle alternator logic by merging the locators
  • patchValueProperty - enable native value property patch on IE8/IE9
  • speedup insert and delete from characters
  • adding extra options through option method => auto apply the mask + add noremask option

Fixed

  • Safari date mask - Context switch when jquery.valhook fallback is used #1255
  • Email alias @_ => _@._ #1245
  • Safari Error: RangeError: Maximum call stack size exceeded #1241
  • Safari Maximum call stack size exceeded when inputmask bound twice #1226

[3.3.0] - 2016-04-05

Addition

  • nullable option => switch to return the placeholder or null when nothing is entered
  • VIN mask #1199

Updates

  • also escape []{}() in the prefix and suffix for decimals
  • Can not change integer part when it is "0" #1192
  • change funtionality of postValidation => result may be true|false
  • improve getmetadata
  • patchValueProperty - enable native value property patch on IE10/IE11

Fixed

  • PostValidation function fails when using placeholder and digitsOptional is false #1240
  • min value issue #1177
  • min value for decimal isn't working #1178
  • InputMask remove a 0 in left side. (numericInput: true) #1238
  • validate regular expression for indian vehicle registration number #1223
  • Distinguish empty value and '$ 0.00' value for currency alias #1053
  • 'alias': 'numeric', zero value #1221
  • Clicking on a highlighted masked field does not set the caret to the first valid position (Chrome) #1218
  • Caret Positioned After Last Decimal Digit Disallows Sign Input When digits Option Set #1139
  • numeric alias produces "0.00" instead of null when cleared out. #902
  • IE8 error: Object doesn't support this property or method #1217
  • update negation handling for numeric alias
  • NumericInput option can't handle 100.00 #1162
  • "0.00" not displayed if "clearMaskOnLostFocus: true" #1171
  • Lost zero while replacing a digit in group #1202
  • RadixFocus problem #686
  • Can not change integer part when it is "0" #1192
  • "[object Object]" value after $element.inputmask('setvalue', '') call #1208
  • Paste does not work properly when using numericInput #1195
  • error occurs in safari 9.0.3 (11601.4.4) #1191
  • Can not clear value when select all and press BACKSPACE in some circumstance #1179
  • Email mask incorrectly including underscore #868 => allowed as not typed => result invalid
  • AutoUnmask not working on IE11 #1187
  • Email mask not accepting valid emails #971
  • Deleting character from input with 'email' alias shifts all data #1052
  • Fix some events like paste & cut for Vanilla dependencyLib #1072

[3.2.7] - 2016-01-28

Updates

  • favor inputfallback for android
  • enable IEMobile

Fixed

  • Firefox, Android - cursor jumps to the left in numeric mask #1138
  • Issue in Android (Samsung GALAXY S5) #825
  • time mask, backspace behavior on android chrome #817
  • Android Chrome Browser #867
  • Mask issue in Android with Swype Keyboard #692
  • Pasting to masked input not working on Android #1061
  • Decimal point/comma not working on Android 4.4 #1041
  • Doesn't work on Android #1073
  • numeric input in mobile #897
  • Support for Android default browser #368
  • Repeating a character and a number On Mobile #898
  • Inputs are ignored on FF 39 on Android 5.0.2 #982
  • Phone input mask duplicates each character on Samsung Android tablet #834
  • Support for Android default browser #368
  • fixed "valids is not defined" error #1166

[3.2.6] - 2016-01-25

Addition

  • add jitMasking option
  • supportsInputType option
  • staticDefinitionSymbol (see readme)
  • include textarea as a valid masking element

Updates

  • enhance inputfallback ~ merge mobileinputevent
  • caching with cache-dependency check in the getTests fn
  • implement missing parts in the jqlite DependencyLib
  • Remove namespaces for events (simplifies implementing other dependencyLibs, besides jquery)
  • update alternation logic

Fixed

  • Windows Phone User unable to set Date #993
  • '405 not allowed' error on loading phone-codes.js on certain Ajax configuration. #1156
  • Issue with reset of inputmask field #1157
  • IE11 clear not working in emulated IE9 mode #1144
  • Show placeholder as user types #1141
  • Initial value like VAA gets truncated to V-__ with mask like "I{1,3}-ZZ" #1134
  • Input mask can't be applied on other HTML5 input types #828
  • IE9 SCRIPT445: Object does not support this action #1135
  • Multiple Mask Click Focus Error #1133
  • Double enter for submit #1131
  • Multiple masks #760
  • Cursor shifted to the RIGHT align any way. #1088
  • No-strict mask #1084
  • Inputmask not work with textarea #1128

[3.2.5] - 2015-11-27

Updates

  • improve cursor positioning and placeholder handling
  • remove $("selector").inputmask("mask", { mask: "99-999 ..." }) format from plugin

Fixed

  • Currency validator gives false negative if number of digits in integer part is not multiplier of groupSize #1122
  • data-inputmask => mask with optionals not parsed correctly #1119
  • Email mask doesn't allow to go to the domain part by mouse #885
  • alias options from 'data-inputmask' is not used anymore #1113
  • Numeric extensions don't supported with vanilla DependencyLib #1116

[3.2.4] - 2015-11-20

Updates

  • allow passing an element id to the mask function
  • allow passing a selector to the mask function
  • fix for bower package

Fixed

  • get the pressed key onKeyValidation #1114
  • write a global function for onKeyValidation #1111 => update readme
  • NumericInput Causes err #856
  • Certain phones not inputable #758
  • I have a problems with mask input, I can't input Ukraine phone +380(XX)XXX-XX-XX #1050
  • you can't write ukraine number to phone field +380999999999 #1019
  • autoUnmask not work in newest release #1109
  • Definition {_} throws an exception #1106 => update readme
  • Uncaught TypeError for "percentage" alias #1108
  • Wrong behavior for symbol delete in ip alias #1092
  • fix element validation for the vanilla dependencyLib #1104

[3.2.3] - 2015-11-09

Addition

  • Inputmask.remove
  • inputmask.binding => automated inputmask binding for html attributes
  • Add tooltip option

Updates

  • fix bug in maskscache - context mixing
  • allow passing multiple inputs to mask function
  • Improve handling of compositionevents
  • improve extendAliases, extendDefinitions, extendDefaults

Fixed

  • Cannot erase input value throw mask symbols (Android 4.4, Android 4.2) #1090
  • CTRL-x / Cut issue #948
  • Double "Change" action when pressing Enter in Firefox #1070
  • upper/lower case handling in data-inputmask-* #1079
  • IE8 Null values after submit #1076
  • Each character repeats on Mobile #912
  • extra tooltip property #1071
  • Numeric aliases insert '0' in input after clearing if there was fraction part #1067
  • Clear optional tail in getvalue. See #1055 #1065

[3.2.2] - 2015-10-07

Fixed

  • Missing comma in bower.json and component.json #1064

[3.2.1] - 2015-10-07

Addition

  • inputmask.dependencyLib.jquery
  • inputmask.dependencyLib.jqlite

Updates

  • namespace dependencyLib => inputmask.dependencyLib
  • fix jquery.inputmask.bundle.js
  • fix dependency paths for browserify
  • update files to be included for package.json, bower.json, component.json

Fixed

  • oncomplete not called when set with option function #1033
  • oncompleate set value incorrect action #1039
  • JQuery dependency #517
  • IsValid on Optional Mask returning false #1055
  • Focus loop on IE9 with numeric.extensions #989
  • Currency with autogroup and no digits not working #1062
  • field input width characters cropped while writing #1060 (regression fix)
  • DependencyLib error in Internet Explorer #1047
  • Dynamically switching mask in same input box not functioning as expected #1016
  • 3.2.0 Error extendDefinitions and extendAliases not functions #1024
  • Browserify error: Error: Cannot find module 'inputmask' from '/Users/.../node_modules/jquery.inputmask/dist/inputmask #1030
  • Invalid JSON phone-uk.js #1025

[3.2.0] - 2015-09-04

Addition

  • add option command to set and retrieve options on an inputmask
  • dependencyLib wrapper around needed jQuery functionality
  • mac address alias #986
  • tabThrough option - Tab and autoselect mask parts #433
  • eslint testing in grunt validate task
  • $.fn.inputmask("setvalue", value)
  • jquery.clone support (also see $.fn.inputmask("setvalue", value))
  • hexadecimal definition (# in inputmask.extensions.js)
  • positionCaretOnTab option
  • Inputmask.unmask
  • numeric alias - increment/decrement by ctrl-up/ctrl-down
  • numeric alias - round values
  • percentage alias
  • Inputmask class
  • setting defaults / definitions / aliases
    • Inputmask.extendDefaults
    • Inputmask.extendDefinitions
    • Inputmask.extendAliases

Updates

  • enhance caret positioning behavior & radicFocus
  • change alfanumeric uppercase definition from # to &
  • numericInput option also possible on dynamic-masks
  • remove $.inputmask in favor of Inputmask class
  • remove "jquery." in the naming of the extensions to better reflect their denpendency
  • separate jquery plugin code from the inputmask core (first step to remove jquery dependency from the inputmask core)
  • Update placeholder handling

Fixed

  • Mask cleared on ajax submit or jquery unobtrusive validation error #1020
  • Update readme for numerics #994
  • extra zeros in currency alias #1008
  • masks parsing generate a Maximum call stack size exceeded #1007
  • Issue using datamask-input attributes and event handlers #992
  • Set specific inputmask option on already initialized control #949
  • Money question #644
  • Decimal numbers with fixed decimal part #990
  • Focus loop on IE9 with numeric.extensions #989
  • Numeric inputs with default value are setted to blank when submit the form #983
  • Default Enter key function getting lost on an input mask text field #938
  • Add JSHint and JSCS #879 => used eslint instead
  • On google chrome, cannot use jquery to clone the inputmask control with data and events #713
  • Cannot overwrite characters when highlighting the characters to the right of the decimal #974
  • Decimal mask accepts "123,456." (RadixPoint with no number after it) #973
  • Make numericInput work with complex masks #963
  • Auto position cursor at end of data on focus #965
  • Decimal separator conversion #919
  • Entering a period on a blank 'numeric' alias input not allowed #888
  • Typing 1000 becomes 1.00 using groupSeparator="." #959
  • phone-codes.js is missing when installing with bower #937
  • Repeat function doesn't work for dynamic masks #960
  • Provide convenient method to unmask value #929
  • Min value doesn't work with allowMinus #951
  • Escape value is inconsistent after mask #935
  • Escape optional marker, quantifiable marker, alternator marker and backslash not working #930
  • Is numeric carret position broken? #928
  • Decimal looses digits #924
  • Firefox: cursor jumps to the right when clicking anywhere on the value #921
  • Numeric inputMask doesn't rounds value #754
  • <strike>Chinese / Japanese characters are unable to mask #198</strike>
  • <strike>Infinite Loop on IE (v11) when using Japanese IME Keyboard #749</strike>
  • Delete key not working properly #799
  • Selecting and overwriting text will delete the character to the immediate right #914
  • Can't delete digits after decimal point on negative numbers #892
  • decimal : extra number after delete and typing new numbers #904
  • Dynamic masks with {*} and zero repeats #875
  • Mask does not alternate back after deleting digit #905
  • never trigger 'input' event when paste after invoke inputmask #776
  • Script looping start when add '.' between decimal values #870 ('.' part)

[3.1.63] - 2015-05-04

Addition

  • Support for CommonJS (Browserify)

Updates

  • Allow masking the text content of other html-elements (other then div)
  • Make alternators correctly handle alternations with different lengths
  • better determine the last required position with multiple masks

Fixed

  • Script looping start when add '.' between decimal values #870 (script loop)
  • Static masks fails when we set value="2015" for an input field where data-inputmask was "2999" #903
  • contenteditable decimal #882
  • Tab out does not work when element is readonly #884
  • Change mask default for allowPlus and allowMinus #896
  • Browser hangs after trying to type some additional digits at the start of a date field #876
  • inputmask decimal with integerDigits or digits with maxlength can cause Browser freezed #889
  • masking a password field #821 (reenable type=password)
  • email inputmask "isComplete" always returns true #855
  • When two masks specified backspace clears the whole input instead of last char #780
  • Phone extention backspace problem #454

[3.1.62] - 2015-03-26

Addition

  • Numeric alias: add unmaskAsNumber option
  • import russian phone codes from inputmask-multi
  • enable masking the text content in a div
  • enable contenteditable elements for inputmask
  • Update Command object to handle inserts and allow for multiple removes
  • Add a change log
  • Add Component package manager support - component.json

Fixed

  • updating a value on onincomplete event doesn't work #955
  • $.inputmask.isValid("1A", { mask : "1A" }) returns false #858
  • IE8 doesn't support window.getSelection js error #853
  • Email with dot - paste not working #847
  • Standard phone numbers in Brazil #836 (Part 1)
  • Sequentional optional parts do not fully match #699
  • How i fix that number problem? #835
  • Form reset doesn't get same value as initial mask #842
  • Numeric extension doesn't seem to support min/max values #830
  • Numeric max filter #837
  • Mask cache - 2 definitions for same mask #831
  • Adding parentheses as a negative format for Decimal and Integer aliases (100) #451
  • Should not allow "-" or "+" as numbers #815
  • isComplete erroneously returning false when backspacing with an optional mask #824

[3.1.61] - 2015-02-05

Initial start of a changelog

See commits for previous history.