how to get value of label of radio button in jquery code example
Example 1: jquery select specific radio button by value
$("input[name=mygroup][value=" + value + "]").prop('checked', true);
Example 2: get value for radio button in jquery label
//id you have a label to your checkbox use this one
$("input[type='radio']:checked").parent().text()