Complex Field Validation
// Require the FullName field to have both first and last names
// Note that Feathery makes the field FullName available as a global variable
if (!FullName.value.match('[a-zA-Z]+ [a-zA-Z]+')) {
FullName.setError('Please enter your full name');
}Last updated
Was this helpful?