Please have a look on the following:
$(\'#myRadio\').change(function() { if($(this).is(\':checked\')) { $(this).parent().addClass(\'
Try this:
if($(this).is(':checked')) { $(this).parent().siblings('td.green').removeClass('green'); $(this).parent().addClass('green'); }