jquery action for selecting radio button code example
Example 1: jquery radio button checked event
$('input:radio[name="postage"]').change(function(){
if ($(this).val() == 'Yes') {
//true
}
else {
//false
}
});
Example 2: input radio trigger select jquery
$('input').prop('checked', true)