In your javascript function where you want to request a list, use this code.
var selected = jQuery('#<%= MyRadioButtonList.ClientID %> input:checked').val();
var selected = $('#<%= MyRadioButtonList.ClientID %> input:checked').val();
to set a sample label with the results of your selected radio book, you can do this ...
$(document).ready(function(){
var selected = $('#<%= MyRadioButtonList.ClientID %> input:checked').val();
$("#<%= MySampleLabel.ClientID %>").text(selected);
}
source
share