Hi All,
Could you guys suggest how to call a function to resize fieldsets to equal height when the validation plugin puts an error message?
I have a fancy form made of 3 fieldsets side by side, and a simple code makes their height equal. It goes like this:
function eqHgt(){ var hght = 0; $('.column').each(function() { // all fieldsets have 'column' class if($(this).height() > hght) { hght = $(this).height(); } }); $('.column').height(hght);}
The form is validated by the jQuery Validation plugin. The problem is that when the plugin finds some invalid fields, it puts error