The answer is yes. I have no idea if there's a validation widget out there that fulfill your needs.
Just a quick example of how you can probably build the widget on your own. <input class="required" /> jQuery(function($){ $("input.required").blur(function(){ if (this.val.length == 0) alert("field is required"); }); }); On Dec 15, 12:26 pm, ycuentocorto <olivares.rodr...@gmail.com> wrote: > Can I name the validations by classname, in order to verfify all > fiuelds that match with specified classname? > > For example set that all input that have a class "date" (<input > class="other_class date ..." ...) will be checked in required, min and > max lenght an others. > > Thanks in advance.