[jQuery] Look for validation plugin option

[jQuery] Look for validation plugin option


How can I point the element in which validation error is shown? I have
specific validation form that consists of many radio buttons.
Vaidation error is shown near the first radio button that have the
same 'name' attribute. Problem is that I do not want to have error
near the first radio element, but near the last or in another 'td'
element. All radio buttons are in separate <td> element and are
grouped into table row. Example:
<tr>
    <th>Name</th>
    <th>A</th>
    <th>B</th>
    <th>C</th>
    <th>D</th>
</tr>
<tr>
    <td>question 1</td> <-- I want error to be shown here
    <td>A<input type="button" class="required" name="answer1" value="A"/