jquery on check radio button code example
Example 1: how to validate the radio button using jquery
BY LOVE
if ($("input[name='Gender']:checked").length == 0)
Example 2: jquery chek radio
//<input type="radio" name="book_condition" value="3" >
$("input:radio[value='3'][name='book_condition']").prop('checked',true);