I have a div which has its content changing all the time , be it ajax requests, jquery functions, blur etc etc.
ajax requests
jquery functions
blur
Is there a way
Following code works for me.
$("body").on('DOMSubtreeModified', "mydiv", function() { alert('changed'); });
Hope it will help someone :)