let observer = new MutationObserver((mutationsList) => { | |
console.log(`${mutationsList.length} change(s) detected`); | |
for (let mutation of mutationsList) { | |
console.log(mutation); | |
} | |
}); | |
observer.observe(div, { | |
subtree: true, | |
childList: true | |
}); | |
div.innerText = "Hello"; | |
observer.disconnect(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment