Comments 2Azhar started the conversationJanuary 22, 2017 at 2:54pmHow can I restrict user to enter minimum 10 digits phone number using input mask - phone[deleted] repliedJanuary 24, 2017 at 1:54pmHi Azhar,This can be combined with jQuery Validate library which will set the minimum length of the field: <input type="text" class="form-control" name="min_field" data-validate="minlength[10]" placeholder="Minimun Length Field" />Then to combine with input mask add this: <input type="text" class="form-control" name="min_field" data-validate="minlength[10]" data-mask="phone" placeholder="Minimun Length Field" />This should work for you. Sign in to reply ...
How can I restrict user to enter minimum 10 digits phone number using input mask - phone
Hi Azhar,
This can be combined with jQuery Validate library which will set the minimum length of the field:
Then to combine with input mask add this:
This should work for you.