JSFiddle - React, Tailwind, and code Playground
by pedromendessk
HTML
<input type="radio" name="rbs" class="rbs" id="rb1"/><label id="rb1Lbl" for="rb1">Hello world</label>
<input type="radio" name="rbs" class="rbs" id="rb2"/><label id="rb2Lbl" for="rb2">Bye world</label>
JavaScript
$( ".rbs" ).change(function() {
if ($( "#rb1" ).is(':checked')) {
$( "#rb1Lbl" ).css('color', 'green');
$( "#rb2Lbl" ).css('color', 'red');
} else {
$( "#rb2Lbl" ).css('color', 'green');
$( "#rb1Lbl" ).css('color', 'red');
}
});