Client side form validation becomes easiest by using jQuery.
I tried all validators and they are so simple!
But in date, number and range validators; I need to add two validators in sequence
So is it possible?
Another common requirement is to reset the Form Fields. Is it possible using jQuery
without writing too much code?
You can add many rules at once.
As far as resetting the form, there is a method for this built into Javascript:
$('#myform')[0].reset();