I am new to JavaScript in general and jQuery in particular and need some help.
I need to write a script to validate that a radio button is selected. If none of the radio buttons are selected I want the table cell they are in to be highlighted in red to alert the user about it.
<table>
<tr><td><input type="radio"/></td><td>value 1</td></tr>
<tr><td><input type="radio"/></td><td>value 2</td></tr>
<tr><td><input type="radio"/></td><td>value 3</td></tr>
</table>
<input type="submit"/>
Edit
I only want the cells containing the radio buttons to be highlighted
