var ID = "";
$('input:radio:checked').each(function (i) {
if ($(this).prop("checked")) {
// alert($(this).val());
ID += $(this).val() + ", "
}
});
alert(ID);