Does anyone know how to go about validating the form that contains a radio button array(using JQuery)?
I have something like this...
6<input type="radio" name="answer[5]" value="6">
5<input type="radio" name="answer[5]" value="5">
4<input type="radio" name="answer[5]" value="4">
6<input type="radio" name="answer[13]" value="6">
5<input type="radio" name="answer[13]" value="5">
4<input type="radio" name="answer[13]" value="4">
The indicies are not necessarily in order. The questions are dynamic.
Is there a way to iterate through these answers in jquery??