$(document).ready(function () { $(‘form’).delegate(‘.radiogroup :radio’, ‘click’, function () { $parent = $(this).closest(‘.radiogroup’); $(‘:radio’, $parent).attr(‘checked’, false); $(this).attr(‘checked’, true); }); }); form==> <form>.radiogroup==> Parent Div of the Both RadioButtonList:radio ==> type=”radio”
Continue reading