Simple Example With Show / Hide
This is a simple example of form validation. It uses the code displayed on the plugin homepage. Checking off "Yes" will add validation to the second field and make it appear.
Here's the plugin code used for this example.
var fValidate = $.parselyConditions({
formname: 'customForm',
validationfields: [{
fid: 'formTrigger',
ftype: 'checkbox',
fvalue: 'yes',
faffected: 'toggledField',
fhide: 'maskDiv'
}],
});