Forum Moderators: open
Therefore if i had a question comparing Soup to a Sandwich and they needed to be put in a rank of importance of 1 to 5 with the use of a select element, obviously two things can not have the same value. Therefore how do i make sure that this doesnt happen.
My code looks like the following:
<select name="Q1">
<option value=""></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>Soup</select
<br>
<select name="Q1Part2">
<option value=""></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>Sandwich</select>
Any help is much appreciated!
Kaz
Then, using an onChange method, generate the second one without the first's option. It's rather tricky, but it can be done.
I saw a very nice list box that allows the user to select from the left and move to the right. Would something like that be useful?
Thanks for all your help!
Kaz