jquery manually check radio button code example
Example 1: How can I know which radio button is selected via jQuery
if ($('input[name="radioName"]:checked', '#myForm').length) {
//Yes, it's checked!
}
Example 2: how to validate the radio button using jquery
BY LOVE
if ($("input[name='Gender']:checked").length == 0)