I have 4 select boxes, each containing the exact same data:
- Riding
- Fishing
- Smoking
- Flying
If I'm in select-box[0] and select "Riding", I want to remove the option from each of the remaining except the current select-box I have active.
I've tried select:not(:first-child) but this will remove, only if the first child is the selection, not any of the other.
Basically, I need to remove a selected option from all drop-downs except the one I made the selection on.