Hello all,
Been puling my hair out regarding this. Maybe someone can help me with this. Basically I have a form:
What I am trying to do is when the user selects a radio (let's say Item A radio 1); the user is only allowed to select either #2 or #3. Basically I want to force the user to select Item 1 = 1, Item 2 = 2, Item 3 = 3 or Item 1 = 2, Item 2 = 1, Items 3 = 3 but no duplicates like Item 1 = 1, Item 2 = 1, Item 3 = 1.
To give you a general idea of what this is. It is basically a rating system from best to worst. So there can't be multiple best's or worst's.
Any help would be great on this.. Thanks in advance.
Been puling my hair out regarding this. Maybe someone can help me with this. Basically I have a form:
Code:
<form name="this_form">
Item A<br>
<input type="radio" name="pick1" value="1"> 1<br>
<input type="radio" name="pick1" value="2"> 2<br>
<input type="radio" name="pick1" value="3"> 3<br>
Item B<br>
<input type="radio" name="pick2" value="1"> 1<br>
<input type="radio" name="pick2" value="2"> 2<br>
<input type="radio" name="pick2" value="3"> 3<br>
Item C<br>
<input type="radio" name="pick3" value="1"> 1<br>
<input type="radio" name="pick3" value="2"> 2<br>
<input type="radio" name="pick3" value="3"> 3<br>
<input type="submit">
</form>
What I am trying to do is when the user selects a radio (let's say Item A radio 1); the user is only allowed to select either #2 or #3. Basically I want to force the user to select Item 1 = 1, Item 2 = 2, Item 3 = 3 or Item 1 = 2, Item 2 = 1, Items 3 = 3 but no duplicates like Item 1 = 1, Item 2 = 1, Item 3 = 1.
To give you a general idea of what this is. It is basically a rating system from best to worst. So there can't be multiple best's or worst's.
Any help would be great on this.. Thanks in advance.