Instead:
$('.checkboxlistid9').attr('checked',false);
Try:
$('.checkboxlistid9').removeAttr('checked');
Also, I think your jQuery selector is wrong
$('.checkboxlistid9')
I do not see the checkboxlistid9 class on your asp:RadioButtonList
Change the query selector to:
$("table[id$=rblLst] input:radio:checked").removeAttr("checked");
or
$("table[id$=rblLst] input:radio").each(function (i, x){ if($(x).is(":checked")){ $(x).removeAttr("checked"); } });
Jupaol
source share