Skip to content

Instantly share code, notes, and snippets.

@zinkkrysty
Created January 15, 2019 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zinkkrysty/2c23451a29a5e2470b273d44a639bf1b to your computer and use it in GitHub Desktop.
Save zinkkrysty/2c23451a29a5e2470b273d44a639bf1b to your computer and use it in GitHub Desktop.
function countNodes(elem) {
const nodeCount = elem.getElementsByTagName('*').length;
elem.setAttribute('data-nodes', nodeCount);
[].slice.call(elem.children).forEach(countNodes);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment