Skip to content

Instantly share code, notes, and snippets.

@benfoxall
Created December 5, 2012 16:48
Show Gist options
  • Save benfoxall/4217317 to your computer and use it in GitHub Desktop.
Save benfoxall/4217317 to your computer and use it in GitHub Desktop.
DOMNodeInserted
<script type="text/javascript">
(function(){
var insertCount = 0;
document.addEventListener("DOMNodeInserted", function(e) {
insertCount++;
console.log(insertCount);
}, false);
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment