I\'m using the jQuery Validation plugin and want to disable the or element/container it creates to display the error \'message\'.
Basically, I want the input element wi
I also had the same issue. I didn't want error messages, just the highlights of the form inputs that needed attention.
The messages were already empty like but still created the error elements/containers after the labels..
So to quickly stop this from happening I edited the jquery.validate.js file by commenting out the only line which states label.insertAfter(element);
around line 697 +/-..
It's just a noob's workaround ;) but it did it!