How to check at least one radio button is checked in each group using jquery
If you have created any question and answer system or polling system in website then you have to validate form to check at least one radio button is checked in each question and answer group. You can easily validate question group by Using jQuery if radio is checked. as same you can validate if one radio button in each group is Checked. In Following example I have created three demo question with 4 option each and we need to validate form before submitting that at one radio button is checked in each group.

Checking at least one radio button is checked in each group using jquery
HTML
Following are the demo question and answer, each question with 4 answer and we need to validate at least one radio button is checked in each question group.
Ques-1:
Option 1
Option 2
Option 3
Option 4
Ques-2:
Option 1
Option 2
Option 3
Option 4
Ques-3:
Option 1
Option 2
Option 3
Option 4
Javascript
Add below script, On submit button click to validate form before submitting at least one radio button is checked in each group using jquery, don’t forget to add jquery library on page.
See online Demo and Download Source Code.
DEMO | DOWNLOAD