0
I’m having trouble deploying the following function and would like your help;
I have a input
with two options of radio
.
if the user selects the value, the jQuery
removes the class hidden
of a div
and add in another, if it selects the value_2 the same occurs, but with another div
. The problem is that I never came across this situation. I hug!
.hidden{
display:none;
}
<div role="tabpanel" class="tab-pane active" id="tab_contabeis">
<br/>
<div class="radio">
<label>
<input type="radio" name="demo_radio" id="demo_radio" value="atendeu" checked>A elaboração dos Demonstrativos Contábeis e de Gestão <strong>Atendeu</strong> os Parâmetros da mencionada Instrução.
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="demo_radio" id="demo_radio_n" value="n_atendeu">A elaboração dos Demonstrativos Contábeis e de Gestão <strong>Não Atendeu</strong> os Parâmetros da mencionada Instrução.
</label>
</div>
<br/>
<div class="controle">
<textarea id="demonstrativocontabeis" name="demonstrativocontabeis" class="form-control" rows="10">
</textarea>
</div>
<div class="controle hidden">
<textarea id="demonstrativocontabeis_n" name="demonstrativocontabeis_n" class="form-control hidden" rows="10">
</textarea>
</div>
</div>