Given a drop down list, is there any way to subscribe a javascript even which will be fired when a new item is added to the list?
I'd like something like the following to work
$("select").itemAdded(function(value, text) {
alert(text + " has just been added to the list of options");
});
$("select").append($("<option></option").val("1").html("Something"));
//results in alert of "Something has just been added to the list of options"