We have a form we were using with the old signature custom coded signature field and are now using the new signature field in Forms 9.2. We had the following jQuery that would allow us to submit the form if a specific radio button option was selected.
$('.districtmanaged').change(function () { $(this).find('input:checked').val() == "District" ? $('.Submit').removeAttr('disabled') : $('.Submit').attr('disabled', 'disabled'); });
How can I make the new signature field not required if that same option is selected?