Skip to main content

minLength

Limit the minimum text length.

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

validator.addField('#name', [
{
rule: 'minLength',
value: 3,
},
]);
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