17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
var observer;
|
|
|
|
(function() {
|
|
|
|
observer = new MutationObserver(function(mutations) {
|
|
mutations.forEach(mutation) {
|
|
for(var i = 0 ; i < mutation.addedNodes.length ; ++i) {
|
|
var next = mutation.addedNodes.item(i);
|
|
console.log(next);
|
|
}
|
|
}
|
|
});
|
|
|
|
obsever.observe(document, {childList: true, subtree: true});
|
|
|
|
})();
|