Forked from pgchamberlin/MutationObserverLogger.js
Created
February 13, 2014 19:04
-
-
Save marcosfreitas/8981598 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
// See MDN: https://developer.mozilla.org/en-US/docs/DOM/MutationObserver?redirectlocale=en-US&redirectslug=DOM%2FDOM_Mutation_Observers | |
(function(){ | |
// select the target node | |
var target = document.querySelector('body'); | |
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver; | |
var i=0; | |
// create an observer instance | |
var observer = new MutationObserver(function(mutations) { | |
mutations.forEach(function(mutation) { | |
console.log(++i + ': ' + mutation.type); | |
}); | |
}); | |
// configuration of the observer: | |
var config = { | |
childList: true, | |
attributes: true, | |
characterData: true, | |
subtree: true, | |
attributeOldValue: true, | |
characterDataOldValue: true, | |
attributeFilter: true | |
}; | |
// pass in the target node, as well as the observer options | |
observer.observe(target, config); | |
})(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment