I try create a fixed input mask with javascript library https://github.com/RobinHerbots/Inputmask
This is my code:
$(document).ready(function(){
$("#phone-1").inputmask("+996 999 999999",{ "clearIncomplete": true });
});
I want to have +996 fixed and user can type other numbers only, how can I do this ?