I'm having a form which I put in a single-columned/multi-rowed table. I want the error message to be presented before the title of the input field. This was my attempt but it didn't work (if I fill in only the first input field, all other becomes invisible upon submit):
errorPlacement: function(error, element) {
error.prepend(element.parent());
},
How can I achieve this instead?