I have a select element that allows for multiple selections. I\'d like to display the selected values in another part of the page (in a div or something) as the user makes chang
This works:
var MyControl = document.getElementById('Control_ID'); var newValue = MyControl[MyControl.selectedIndex].value;
Of course, Control_ID is the ID of the select control.