I have radio button list which has id as the value, I want to access the selected id in the jquery function.
If you have HTML that looks like this:
You would get the selected radio value with this:
$("input:radio[name='choices']:checked").val();