How To Validate Dynamic Content Using Jquery Validate Plugin
I'm having issues validating some dynamic content. The closest I have come to finding a similar problem is this: jquery-validate-is-not-working-with-dynamic-content My form is a ba
Solution 1:
You can use attributes to add the rules like
dom += '<input type="text" name="FullName_' + i + '" required>';
Demo: Fiddle
Post a Comment for "How To Validate Dynamic Content Using Jquery Validate Plugin"