I have a form (\'#registrations\') that I am validating with Parsley.js and so far it is working fine. However, I am trying to dynamically remove form fields and add new one
I had this issue while working with validates-if-empty set to true. Simply setting this to false didn't have any effect. I had to actually remove the attributes. On validation parley automatically detected the changes.
$('input').removeAttr('data-parsley-required');
$('input').removeAttr('data-parsley-validate-if-empty');