Skip to content

Instantly share code, notes, and snippets.

@skinofstars
Created December 5, 2012 16:43
Show Gist options
  • Save skinofstars/4217271 to your computer and use it in GitHub Desktop.
Save skinofstars/4217271 to your computer and use it in GitHub Desktop.
Count DOM injections
var insertCount = 0;
document.addEventListener("DOMNodeInserted", function( e ) {
insertCount++;
console.log(insertCount);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment