Is there a jquery event when parameters are added or removed from a select control on an HTML page? I tried .change(), but it only fires when I click on option elements. That is, this does not work:
$(function() {
$('#select').change(function() {
alert('hello world');
})
});
Thank:).
source
share