I'm using BootstrapValidator to validate my email input box. It works perfectly, however I want to pervent a certain email domain "@test.com" from being validated, how do I do that?
here is the code:
email: {
message: 'Your email must be in the format "example@domain.com"',
validators: {
notEmpty: {
message: 'Your email is required and cannot be empty'
},
emailAddress: {
message: 'The value is not a valid email address'
}
}
},