jquery get selected radio boxes code example
Example 1: jquery select specific radio button by value
$("input[name=mygroup][value=" + value + "]").prop('checked', true);
Example 2: How can I know which radio button is selected via jQuery
if ($('input[name="radioName"]:checked', '#myForm').length) {
//Yes, it's checked!
}