My HTML page contains a bootstrap multiple select field:
<select class="form-control bootstrap-select"
data-style="alpha-grey-300 pt-5 pb-5 pl-10 text-size-mini" multiple
id="associated.persons"
data-live-search="true">
</select>
Every time a new set of selection is made, the jQuery change event is not working. When I write this code,
$('#associated.persons').change(function (e) {
console.log("Input changed !!!!!!!!!!!!!!!");
});
Nothing is written it the console. I don't know where the problem is exactly.