Getting Started
Events

identical validator

Check if the value is the same as one of given value

Options

Using with form field
The HTML attributes are used to set the validator options via the Declarative plugin
(* denotes a required option)
Name HTML attribute Type Description
compare * data-fv-identical___compare String or a function returns a string The value that the field has to be different with
message data-fv-identical___message String The error message
Using with ES6 module
            
// You might need to change the importing path
import identical from 'formvalidation/dist/es6/validators/identical' ;
const result = identical ( ) . validate ( {
value : ... ,
options : {
compare : ... ,
message : ... ,
} ,
} ) ;
/*
result is an object of
{
valid: true or false,
message: The error message
}
*/

Basic example

The following form requires the password and confirmation one to be the same using identical validator.
identical validator

See also