how to set text when a radio button in a radio group is clicked code example
Example 1: set radio button group value
$("input[name=mygroup]").val([5]);
Example 2: set radio button group value
$("input[name=mygroup][value=" + value + "]").prop('checked', true);