Page 1 of 1
Limit the number of characters allowed in the input field
Posted: Sat Nov 24, 2018 12:20 pm
by sadibou
hi,
how can I limit the number of characters allowed in the form input field ?
exemple :
<input type="text" name="code" maxlength="10" />
Re: Limit the number of characters allowed in the input fiel
Posted: Sat Nov 24, 2018 2:06 pm
by alf1976
Yes via Jquery
In the 'custom code' tab of your form, enter the JavaScript section and add, for example if the fieldname/object is JobTitle
$('#JobTitle').prop('maxLength', 10);
Re: Limit the number of characters allowed in the input fiel
Posted: Sat Nov 24, 2018 2:32 pm
by sadibou

thanks a lot alf1976
it works

Re: Limit the number of characters allowed in the input fiel
Posted: Sat Nov 24, 2018 10:07 pm
by admin
.