3
I am making a form and it will have two fields for selection of items, ie they are type="radio", only that the following problem happens when it selects an alternative of the first question ta right, but when it selects the second the first unchecks, I’ll send my code and you help me it’s a simple thing only I’m not getting.
<div>
<div class="col-md-12">
<label for="gender">
Melhor forma para contato:
</label>
</div>
<div class="col-md-push-2 col-md-6 padding-botton">
<label for="tfixo">
<input id="tfixo" type="radio" name="gender" value="t-fixo">
Tel. Fixo
</label><br>
<label for="tcel">
<input id="tcel" type="radio" name="gender" value="t-cel">
Tel. Celular
</label><br>
<label for="emaill">
<input id="emaill" type="radio" name="gender" value="email">
E-mail
</label>
</div>
</div>
<div>
<div class="col-md-12">
<label>
Melhor horário para contato:
</label>
</div>
<div class="col-md-push-2 col-md-6 padding-botton">
<label for="manha">
<input id="manha" type="radio" name="gender" value="manha">
Manhã
</label><br>
<label for="tarde">
<input id="tarde" type="radio" name="gender" value="tarde">
Tarde
</label><br>
</div>
</div>
Hi! If any of the answers below solved your problem, then you can mark her as accepted.
– Sergio