How do you get the value of the currently selected option in a bootstrap 5 multi-select dropdown list – Jquery
I've tried the following but they return the list of select values not the option that fired the onchange event. How can I identify the selected option's value that fired the event? $('#ddlCostCenters').on('change', function (e) { alert($(this).val()); //returns the list…