Load mask for Jasny bootstrap plugin

1.4k Views Asked by At

I am using Jasny Bootstrap for input masking in my application got stuck at one point.

I have a text box where i want to apply masking(only enter numbers not less then 1 and not greater then 1111) but in my case if I can type less then 4 digits its not accepted. Any help ?

<input class="form-control" id="txtEIN" type="text" data-mask="9999" />
1

There are 1 best solutions below

1
On BEST ANSWER

Any characters after "?" are optional

<input class="form-control" id="txtEIN" type="text" data-mask="9?999" />

jsfiddle