I need to create a function that when setting one of the options, the next select also changes to the same value.
How could you do this with this structure below?
<select id='opt#1'>
<option value='1'></option>
<option value='1'>CSS</option>
<option value='1'>HTML</option>
<option value='1'>Javascript</option>
</select>
<select id='opt#2'>
<option value='1'></option>
<option value='1'>CSS</option>
<option value='1'>HTML</option>
<option value='1'>Javascript</option>
</select>
Would anyone have a light on how to do this with a change something like this?
I started something here: link
But when I was working on a solution, whoever has any light will help a lot.