Guilherme Pacheco

Results 2 comments of Guilherme Pacheco

You can override the default function to workaround. ``` javascript $.jqBootstrapValidation('override', { builtInValidators: { validemail: { name: 'Validemail', type: 'regex', regex: '[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,6}', message: 'Not a valid email address' } }...

Another workaround is override the default function, like: ``` javascript $.jqBootstrapValidation('override', { builtInValidators: { validemail: { name: 'Validemail', type: 'regex', regex: '[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,6}', message: 'Not a valid email address' } }...