2
I want to copy a option
or more options’s selected from a select
multiple
to another select
multiple
with jquery.
<select id='cursos' multiple>
<option selected>curso 1</option>
<option selected>curso 2</option>
<option>curso 3</option>
<option>curso 4</option>
</select>
<select id='cursosrealizados' multiple>
<option>curso 1</option>
<option>curso 2</option>
</select>
If anyone has any ideas or suggestions thank you.
It gets a little complicated if the elements have no reference, class, value or id.
– Markomafs