validateElement() method
Validate a particular element
validateElement(field: String, element: HTMLElement): Promise
(* denotes a required parameter)
| Parameter | Type | Description |
|---|
field* | String | The field name |
element* | HTMLElement | The field element |
Using the global script in the browser
const fv = FormValidation.formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validateElement('userName', userNameEle)
.then(function(status) {
...
});
Using the ES6 module
import { formValidation } from '/path/to/@form-validation/cjs/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validateElement('userName', userNameEle)
.then(function(status) {
...
});
Using the npm package
import { formValidation } from '@form-validation/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv
.validateElement('userName', userNameEle)
.then(function(status) {
...
});