This pertains to my question yesterday, which was answered perfectly here by @iambriansreed.
In trying to take it one step further, my brain short-circuited. Plus, the jquery api site is down.
I have two select boxes; certain options in the second are removed based on the selection of the first. Option values of each select box are arrays.
What I need to do now is CHANGE the value of the second selectbox so that any array segment that doesn't match the first is removed. I've been on it all day and it's twisted my head. So, in this fiddle, if "Chamber Music" is selected in #selectbox1, the value of #selectbox2's option Chamber Music 5 should change to
<option value="620069,1547340">Chamber Music 5</option>,
since the other value (328874) wasn't a match in the original array. Possible? Clunky? I'm already comparing arrays, so already getting non-matches.