How can I copy all options of one select element to another? Please give me the easiest way, I\'m allergic to looping.
options
select
Please help me. Than
you can do that easily via jquery:
1 2 3 1 2 3 $(document).ready(function(){ $("#sel2").html($("#sel1").html()); });