JSFiddle - React, Tailwind, and code Playground

HTML

Question 1 Yes<input id='chk1' value="yes" type='radio' />No<input name='chk3' value="no" type='checkbox' /><br />
Question 2 Yes<input id='chk2' value="yes" type='radio' />No<input name='chk3' value="no" type='checkbox' /><br />
Question 3 Yes<input id='chk3' value="yes" type='radio' />No<input name='chk3' value="no" type='checkbox' /><br />
Other comments<textarea id='comment'></textarea><br /><input type=submit name=submit value='Post' />

JavaScript

$('#chk1').change(function(){
    $('#comment').text("Question 1:" + "");
});
$('#chk2').change(function(){
    $('#comment').text("Question 1:" + "");
});
$('#chk3').change(function(){
    $('#comment').text("Question 1:" + "");
});