I'm making a form and it will have two fields for selecting items, ie they are type="radio", but the following problem occurs when it selects an alternative to the first question, but when it selects the second to the first uncheck, I will send my code and you help me is simple thing only I can not.
<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>