validate() method
Validate all fields
It might be used when you want to validate the form manually when pressing given button.
If you want the form to be validated automatically when pressing its Submit button, use the
SubmitButton pluginUsing the global script in the browser
const fv = FormValidation.formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validate()
.then(function(status) {
...
});
Using the ES6 module
import { formValidation } from '/path/to/@form-validation/cjs/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validate()
.then(function(status) {
...
});
Using the npm package
import { formValidation } from '@form-validation/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validate()
.then(function(status) {
...
});
See also