0
Guys, I need to save several groups of radiobuttons in the bank. Example:
<input type="radio" value="sim" name="grupo1">
<input type="radio" value="nao" name="grupo1">
<input type="radio" value="sim" name="grupo2">
<input type="radio" value="nao" name="grupo2">
<input type="radio" value="sim" name="grupo3">
<input type="radio" value="nao" name="grupo3">
Are 3 different groups need to save the chosen radio value of each group in the bank.
Some help?
Guys, I forgot to tell you. Radio groups are dynamic depending on the page loaded. Depending can appear 3 groups, 4 groups, 120 groups. That’s the problem. I have to get the value of each group that appears when I load the page.
– Thiago
Solved. I created a for() to list all radios and capture values.
– Thiago