Hi I'm currently using the jquery masked input and I want to make the first two digits as permanent numbers. For example, I have a number like (09)191-234-567
(09)
are permanent mask while the following 9 digits are editable.
IF I do this, $("#phone").mask("(99) 999-999-999");
all digits are editable. I tried searching but found no luck.
Thanks in advance.
The maskedinput plugin (which I believe you're referring to) allows you to define your own masks.
This means you can add your own masking character for numbers (
#
, for example), and remove the masking definition for9
so that it no longer does anything.