Tag: Unobtrusive
-
How to Reset Form Unobtrusive jQuery?
I was looking around for a way to reset a form that was already validated by Unobtrusive jQuery Client Validation. JQuery validate doesn’t have any way to reset the UI after errors occur. However, you can safely use: var validator = $( “#myform” ).validate(); validator.resetForm(); The best example I found online was on John Culviner […]
-
Reset Form Unobtrusive jQuery validation: How to?
I was looking around for a way to reset form Unobtrusive jQuery validation. In other words, I want to reset everything to default. Unobtrusive validation closely relates to data annotations because they hold the validation rules. For example, you can set up min or max length a text box field. More importantly, how to clear […]