Here are two functions I use to reset error messages and form field values:
$("#modal_form").parsley().reset();//This only resets error messages, not form field values
$("#modal_form")[0].reset();//This only resets form field values, not error messages
Is there a single method that can reset both error messages and all form field values at once?
Thank you!