A :
Hi here is the code:
$('#myForm input').on('change', function() {
alert($('input[name=radioName]:checked', '#myForm').val());
});
In this code on selecting radio button, you get alert with selected radio button value.
A :
Hi there is no need of jquery to reload current page, use can just use javascript code..
location.reload();
A :
$('#id1 option[value="'+id+'"]').prop('selected', true);
A :
Use this statement, it will help you
$('#id1').trigger('change');