0
I need to create a function that when setting one of the options, the next select also changes to the same value.
how could do this with this structure below?
Obs: value is a hash so it will never be the same, so I put 1 just to simulate.
<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>
Someone would have a light on how to do this with a change something like?
I started something here: http://codepen.io/anon/pen/KdQMNb?editors=101
but ta mocked I was drafting a solution, whoever has some light will help a lot.
good would be just that ;)
– Edmo