my form is a table and input fields are in rows and several columns. I am trying to place error messages with the jquery validate plugin in the cell (same column, next row) which is located right beneath the field which produced the error.
HTML would be something like that:
<form id="add_this">
<table>
<tr>
<td><input id="one">bla</input></td>
<td><input id="two">bla</input></td>
<td><input id="three">bla</input></td>
</tr>
<tr>
<td id="err_one"></td>
<td id="err_two"></td>
<td id="err_three"></td>
</tr>
<tr>
<td><button id="frm_submit">Go</button></td>
</table>
</form>
So, for example, if the error was on input with id 'one', the corresponding error msg should appear in the cell with id 'err_one'. My validation code, which does not work, goes like this:
$('#frm_submit').click(function(){
$('#add_this').validate({
errorPlacement: function(error, element){
error.appendTo(element.closest('tr').next('tr').children('td').eq(element.index()));
}
});
});
Thanks very much in advance