$("input:radio[name=type]").click(function() {
alert('You clicked radio!');
alert($('input:radio[name=type]:checked').val());
if($('input:radio[name=type]:checked').val() == "walk_in"){
}
});
$('#radio-button-id').click(function() {
if($('#radio-button-id').is(':checked'))
{
//input where you put a value
$('#program').val("radio-button-text");
}
});
$('input:radio[name="postage"]').change(function(){
if ($(this).val() == 'Yes') {
//true
}
else {
//false
}
});
$("input[@name='lom']").change(function(){
// Do something interesting here
});
$('input:radio[name=sex]:nth(0)').attr('checked',true);
or
$('input:radio[name=sex]')[0].checked = true;
$("#radio_1").prop("checked", true);