jQuery Event : Detect changes to the html/text of a div

后端 未结 13 2302
旧巷少年郎
旧巷少年郎 2020-11-22 06:15

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

13条回答
  •  臣服心动
    2020-11-22 06:55

    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');
    });
    

提交回复
热议问题