input type radio name checked jquery code example
Example 1: get value of checked radio button jquery
$('form input[type=radio]:checked').val();
Example 2: How can I know which radio button is selected via jQuery
if ($('input[name="radioName"]:checked', '#myForm').length) {
//Yes, it's checked!
}