you can easily ad an onsubmit method to your form, like this:
$().ready(function() {
$('form').submit(function() {//adds a javascript check to the form's submit
$('form input').each(function() {//this loops through each input in the form
var inputValue = parseInt($(this).val(), 10);
if (inputValue < 12) { hideErrors();}
else { displayErrors(); return false;}
});
});
});
Hope this helps.
the validation plugin mainly works when you add classes to existing inputs, my above method will loop through any inputs in the form without a need to add classes to all of the inputs