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
You can try this
$('.myDiv').bind('DOMNodeInserted DOMNodeRemoved', function() { });
but this might not work in internet explorer, haven't tested it