2
I am working on a typing system of a paper form, where I have some options of radiobutton, for example:
<fieldset>
<legend> Disponibilidade de energia elétrica? </legend>
<label for="sim"> <input type="radio" name="energia" value="sim">Sim</label>
<label for="nao"> <input type="radio" name="energia" value="nao">Não</label>
</fieldset>
The case is that eventually a typist clicks "unintentionally" on a radio to answer a form question, however, the question is blank on paper, and it would be necessary to undo the selection.
The standard behavior of group of radiobutton is to be able to change between options and not to de-select the field.
Nor could it be a Clear Form function, because the typist would have to re-type all the other fields.
Any ideas? Has anyone ever had the same problem? How to give a reset in the group "energy", for example?
You can put an example of HTML to better understand the structure?
– Sergio
Thanks @Sergio, really the question got clearer. Anyway I’ve had good answers too. Abs
– Rodrigo Gaete