I have five radio button
, of these five one is "marked", how do I uncheck the radio button
that I clicked after clicking another?
Example:
<fieldset>
<legend>Selecione:</legend>
<label>Morango:
<input type="radio" id="A" checked/>
</label>
<label>Maracujá:
<input type="radio" id="B" />
</label>
<label>Melancia:
<input type="radio" id="C" />
</label>
<label>Melão:
<input type="radio" id="D" />
</label>
<label>Mamão:
<input type="radio" id="E" />
</label>
</fieldset>