Skip to main content

email

A valid email.

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

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