I would like to capture the event when the div content change and display some alert before the div content change. Below is what I am doing....
jQuery('#myDiv').bind('DOMSubtreeModified', function () {
alert('SUDIPTA ... Hi there, hello');
});
But seems like alert message is not coming. Can you please help me? Thanks.