2
Assuming I have two options at the beginning of a form, option A and option B
<label>SELECIONE UMA OPÇÃO</label>
<form>
<label><input value="A" name="opcao" type="radio">opcao A</label>
<label><input value="B" name="opcao" type="radio">opcao B</label>
</form>
Assuming I select option A, I want you to load form A, theoretically form A would be like this:
<form id="A">
<input name="A" placeholder="A opção "A" do botão radio foi selecionada"
</form>
And therefore if I select option B, the form for B will be loaded:
<form id="B">
<input name="B" placeholder="A opção "B" do botão radio foi selecionada"
</form>
What happens that passes for
<form>
for<form A>
or<form B>
?– brasofilo
You want to give an :checked input to form #A to appear and the same in #B?
– haykou
That’s right @haykou
– ivan veloso
Sorry @brasofilo, but I didn’t understand your comment.
– ivan veloso
Misunderstanding my, please discard previous comment.
– brasofilo