Hi IAmMadan,
Try this:
function uncheckRadio() {
var choice = document.getElementById('<%= RadioButtonList1.ClientID %>');
for (i = 0; i < choice.length; i++) {
if ( choice[i].checked = true )
choice[i].checked = false;
}
}
Hope this helps.
*** REMINDER ***
If you find this post useful, Please click the 'Mark as Answer' Button.
*** DISCLAIMER ***
All Code is provided AS IS.