I've got an annoyingly long list of radio button question / answers
Do you like A or B
Do you prefer x or y
Those type of questions.
Markup looks a little something like:
<input type="radio" name="User[AnnoyingQuestion][1]" value="1|Do you like x or y?|X" id="Member[PartyProfile]_1_0" />
<input type="radio" name="User[AnnoyingQuestion][1]" value="1|Do you like x or y?|Y" id="Member[PartyProfile]_1_1" class="elp-radio-question">
Basically, I need to ensure that all of the questions have been answered. What's a good strategy for doing this with jQuery?