I've got a group of 16 select boxes in a php mail() form, and I want to disable an option if it's chosen in any other box. The order of options in the select boxes aren't the same, and the I need the value for the php mail. I want the user filling in the form to not be able to choose the same option twice or more.
<select name="box1" id="box1"> <option value="One">One</option> <option value="Two">Two</option> <option value="Three">Three</option> </select> <select name="box2" id="box2"> <option value="Two">Two</option> <option value="One">One</option> <option value="Three">Three</option> <option value="Life">Life</option> </select> <select name="box3" id="box3"> <option value="Life">Life</option> <option value="One">One</option> <option value="Two">Two</option> </select> Also, further down the website, I want to do the same with another group of 8 select boxes - and they contain some of the same options, but then I want them all to be choosable from the beginning, until an option from one of them get picked.
I know too little about jQuery and JavaScript. Help?