jquery input type radio selected code example
Example 1: jquery radio button checked event
$('input:radio[name="postage"]').change(function(){
if ($(this).val() == 'Yes') {
//true
}
else {
//false
}
});
Example 2: jquery select specific radio button by value
$("input[name=mygroup][value=" + value + "]").prop('checked', true);