LoginSignup
6
6

More than 5 years have passed since last update.

DOMに変更があった時イベント発火

Posted at
var c = 0;
var func = function () {
  c++;
  alert(c)
};

var observer = new MutationObserver(func);

observer.observe(document.getElementById("msgs_div"), {childList: true})
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6