I have a id=\"modal\" generated dynamically with the jQuery load() method:
$(\'#modal\').load(\'handl
If you need to capture changes for all of the form elements, particularly select boxes, I know they are not mentioned here, but it is helpful to know, use the following code:
$(document).on('change', ':input', function () {
alert('value of ' + $(this).attr('name') + ' changed')
});
This should cover all input, textarea, select, checkbox, radio, etc.