In JavaScript, I need to detect when the value of a certain select element has changed for any reason, including programmatically.
The onchange event i
var targetSelect = $('appropriate selector');
var lastVal = targetSelect.val();
setInterval(function() {
var newVal = targetSelect.val();
if(newVal !== lastVal) {
// it changed, fire an event or process it
}
lastVal = newVal;
}, intervalSpacing);
The lower the value you pass to 'intervalSpacing' the more CPU time you spend, but the sooner you realize it changed. Tune cautiously.