validation radio button jquery code example
Example 1: if radio checked jquery
$('#element').click(function() {
if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
Example 2: how to validate the radio button using jquery
BY LOVE
if ($("input[name='Gender']:checked").length == 0)