I have a combo box contains data loaded from server side. I want to duplicate this combo Element, which means I want the same content stored in the combo box and display it right next to the original one. Is there any fast way to copy an element in javascript ?
might be able to try to clone the node of the select element, not sure if it will copy all of the options. Probbaly the easiest thing is to use createElement with the select and than use new Option() with a for loop.