Initialize jQuery validate() function on multiple dynamically added forms
It is has been suggested that it is best to initialize a $('#form').validate({}) function on page load rather than on a click event: jquery.form/validate plugin only allow submit if input is changed I'm wondering how to do this for multiple dynamically added forms without wrapping the $('#form').validate({}) function inside of a on('click', 'input[type="submit"]', function. Take this code for example: var id="some identifier for the specific form that is submitted"; `$('#form'+id).validate({})` How does this unique identifier, id , which is required to distinguish each form get created in the