We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The hidden fields are being validated by the parameter required in HTML5.
required
To remove this parameter when removed fields are hided you could use the following snippet:
jQuery(function ($) { $(document).on('nested:fieldRemoved', function (event) { $('[required]', event.field).removeAttr('required'); }); });
There was an error while loading. Please reload this page.