I know the title isn't very descriptive but I hope i can clarify my problem here: I have multiple identical select dropdowns. Now, what I wan't to do is to remove an option from all other dropdowns if it is chosen in one of them. Here is an example:
I have selects with ids 'a', 'b' and 'c'. All of them contain the following options:
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
If I now chose option '1' in select list 'a', I want to remove option '1' from lists 'b' and 'c' with JQuery.
Edit: This is basically all I have: http://jsfiddle.net/j91p8eo5/
Anyone got any ideas?