While doing some sanity tests I noticed that the following change
event binding works:
$("body").on("change","input", function(){console.log(1)})
While the on
event binding does not:
$("body").on("change","select", function(){console.log(1)})
Is there any workaround or explanation for this inconsistency?