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
Tried some of answers given above but those fires event twice. Here is working solution if you may need the same.
$('mydiv').one('DOMSubtreeModified', function(){ console.log('changed'); });