I have a radio button named \"Choose\" with the options yes and no. If I select any one of the options and click the button labeled \"clear\", I need to clear the selected o
You don't need to have unique id for the elements, you can access them by their name attribute:
If you're using name="Choose", then:
With jQuery it is as simple as:
$('input[name=Choose]').attr('checked',false);
or in pure JavaScript:
var ele = document.getElementsByName("Choose");
for(var i=0;i
Demo for JavaScript