This plugin will probably have many updates in the future. I plan to add much more to it. The validation is done using very little code as seen beloq. The validation is done by adding classes to the for elements. Different classes will do different things such as make an element required or allows the plugin to check for a certain type. Docs coming soon. Download the plugin here
$(document).ready(function(){
$('#formation').jvalidate({
validateEvent:'blur',
errorLabelType:'tooltip',
errorLabelEffect: 'slidedownfade',
errorLabelOffset:4,
passwordMeter:true
});
$.jvalidate.forceValues({selector:'.number',addCommas:true});
});