I recently posted a related question copying selected option to another select.
I realised that what I'm trying to do is more straightforward but I hope I'm not breaking forum rules by "double posting" because this question is slightly different. Here goes. I want "productchoice" to affect "productchoice2".
<select id="productchoice">
<option value="1">Option #1</option>
<option value="2">Option #2</option>
</select>
<select id="productchoice2">
<option value="1">Option #1</option>
<option value="2">Option #2</option>
</select>
My question is: when "productchoice" is changed, what javascript should I put in to make "productchoice2" reflect the same choice?
Thanks for your help again, kind people!