Getting Started
Events

getFields() method

Return entire `fields` option
            
getFields ( ) : Object
Using in the browser
            
const fv = FormValidation . formValidation (
document . getElementById ( 'demoForm' ) ,
{
...
}
) ;
const fields = fv . getFields ( ) ;
Using with ES6 module
            
import formValidation from 'formvalidation/dist/es6/core/Core' ;
const fv = formValidation (
document . getElementById ( 'demoForm' ) ,
{
...
}
) ;
const fields = fv . getFields ( ) ;