Hi,
I have a form that has three pages. The fields across all the page are required and user must complete them before moving to next page. I found the following code on this resource site and used it. It worked well for all the fields except the signature field.
$(document).ready(function(){ $("#form1").change(validate); validate(); $('.cf-next-btn').click(validate); $('.cf-prev-btn').click(validate); function validate() { if ($("#form1").parsley({excluded:":hidden"}).isValid()) { $('.cf-next-btn').show(); } else { $('.cf-next-btn').hide(); } } })
My question is how to validate the signature before allowing user to move to next page. I am using Forms version 10.3.0.975. Thank you.
Sincerely,
Wissam