I have a set of radio buttons and one of them is checked like this.
<input name="test_data" type="radio" value='1' id="test_data">
<input name="test_data" type="radio" value='2' id="test_data" checked="checked">
<input name="test_data" type="radio" value='3' id="test_data">
<input name="test_data" type="radio" value='4' id="test_data">
I have a link like this
<a href="#" id="resetvalue">reset value</a>
How can I reset the radio button value when the user clicks on the resetvalue
id. I am not using any form.
If there is a form and button we can easily do for that using reset property.