I have a div which has its content changing all the time , be it ajax requests, jquery functions, blur etc etc.
Is there a way I can detect any changes on my div at any point in time ?
I dont want to use any intervals or default value checked.
Something like this would do
$('mydiv').contentchanged() {
alert('changed')
}