0
I have a Function in javascript that works perfectly for a textbox
$('#Year').on('change', function () {
alert("test");
});
However, for a combobox, it does not work
$('#EntityId').on('change', function () {
alert("test");
});
I tried to use .change(function (){})
but it also doesn’t work
The error must be in HTML. O
id
must be different, duplicated or malformed.– Augusto Vasques