<input> HTML, , . JS CSS , <label>, .
, , HTML-:
<label><input type="radio" name="question-one" value="yes"> Yes</label>
<label><input type="radio" name="question-one" value="no"> No</label>
jQuery, <label> :
$('input[type=radio]').each(function(){
$(this).parent().click(function(){
$(this).children('input').click();
$('label').removeClass('checked');
$('label:has(input[type=radio]:checked)').addClass('checked');
});
}).hide();
CSS- <label> s, , .checked, , .