Let's say I have a form like
- Code: Select all
<p>
<label>
<input type="radio" name="fm" value="1" id="radiooo_0" />
1</label>
<br />
<label>
<input type="radio" name="fm" value="2" id="radiooo_1" />
2</label>
<br />
<label>
<input type="radio" name="fm" value="3" id="radiooo_2" />
3</label>
<br />
</p>
Then I have a built in javascript radio/checkbox to check the field 'fm'
When I click submit, the script returns 'please select one of the above options' on all 3 buttons, not just for the whole group.
I really have no idea what is wrong. Please advice.
