JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td><input type="radio"/></td><td> On Time</td>
<td><input type="radio"/></td><td>value 2</td>
<td><input type="radio"/></td><td>value 3</td>
</tr>
</table>
<input type="submit"/>
JavaScript
$('input[type=submit]').click(function() {
$('td:has(input[type=radio])').css('background-color', function() {
return $('input[type=radio]:checked', this).length === 0 ? 'red' : '';
});
});