showing results for - "jquery copy all options from select to another"
Lucy
02 Jan 2021
1var $options = $("#myselect > option").clone();
2
3$('#secondSelectId').append($options);
4