Hi;
I would like to set up an event listener for changes to the comboBox instead of adding events to each instance of the comboboxes as I have a lot of them.
$(document).on("change", ".combo-value", function() {
cl(this);
});
I have tried several methods of detecting the change event but so far no success, can this be done ??