Reputation: 165
I can only select only one radio button within 9 radio button. **I need to select one radio button in one section.
think, I select the mobile radio button of the green plus button section. when I click on green plus button it create a new section with red minus button. ** In the new created red button section the mobile radio button will selected and all the radio button in this section will disabled.
Many time I tried it myself but I cant solve the problems.
I also put a fiddle. Please help me.
Upvotes: 0
Views: 242
Reputation: 2005
Instead of using <div class="form-group multiple-form-group">...</div>
just use <form class="form-group multiple-form-group">...</form>
.
Replace your div
tag with form
tag, so its separated.
Upvotes: 1