I\'m adding select elements dynamically, like in the below HTML. I\'m not sure why the .on(\'change\' ...) is not working for the dynamic select. What am I missing?
Don't use .live()/.bind()/.delegate(), though. You should use .on().
.live()
.bind()
.delegate()
on()
for both static and dynamic select changes
$(document).on('change', 'select', function (e) { // do something });