Skip to main content

maxLength

Limit the maximum text length.

const validator = new JustValidate('#form');

validator.addField('#name', [
{
rule: 'maxLength',
value: 10,
},
]);
caution

Please note, the rule doesn't trigger the validation error if the field is empty. If you want to make it required you should also add required rule

Demo