error message placement - validate

error message placement - validate

I want the error messages to appear below the text boxes, not to the right. I have my own text after some of my text boxes and with the default settings the error appears between the text box and my text. Looks weird that way. I'd rather have the errors below each element. I tried with the below but didn't get anywhere. I want ALL errors below. Not sure what to do.

errorPlacement: function(error, element) {
error.appendTo( element.parent("td").next("td") );
},

Any help appreciated. Thanks. :)