how to set type="radio" to check 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 do radio button validation in jquery
if($("input[name='Gender']:checked").length == 0)