1
I have the following code:
<input type="radio" name="Tipo" value="Sabonete"> Sabonete<br>
<input type="radio" name="TipoSabonete" value="Neutro"> Neutro<br>
<input type="radio" name="TipoSabonete" value="Phebo"> Phebo<br>
<input type="radio" name="TipoSabonete" value="Dove"> Dove<br>
<hr>
<input type="radio" name="Tipo" value="Informatica"> Informática<br>
<input type="radio" name="TipoInformatica" value="Notebook"> Notebook<br>
<input type="radio" name="TipoInformatica" value="Desktop"> Desktop<br>
<input type="radio" name="TipoInformatica" value="Tablets"> Tablets<br>
<hr>
<input type="radio" name="Tipo" value="Smartphones"> Smartphones<br>
<input type="radio" name="TipoSmartphones" value="LG"> LG<br>
<input type="radio" name="TipoSmartphones" value="Samsung"> Samsung<br>
<input type="radio" name="TipoSmartphones" value="Nokia"> Nokia<br>
I would like the user when selecting the Soap, all the fields connected to the Soap were marked, the same for the item Computer and Smartphones. I saw that here had a similar question, but I am a layman in jquery and I’m having a hard time understanding the examples applied in this link. Includes only 03 examples, the system will actually have more items.
It would be interesting if this site had the option of the person who is negatively asking the question put the reason, because the way it is, It is given to understand that this person does not know the answer and with that is more comfortable negative than helping!
– user24136