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
Since $("#selector").bind() is deprecated, you should use:
$("body").on('DOMSubtreeModified', "#selector", function() { // code here });