Skip to content

Instantly share code, notes, and snippets.

@ducksoupdev
Forked from JasonRammoray/dom-tree-depth-level.js
Created December 18, 2019 06:20
Show Gist options
  • Save ducksoupdev/44a4724395be93b87d39c770b34e71f0 to your computer and use it in GitHub Desktop.
Save ducksoupdev/44a4724395be93b87d39c770b34e71f0 to your computer and use it in GitHub Desktop.
Get depth of a DOM tree with a list of nodes included into longest path
function getDomDepthLevel(root = document.documentElement) {
let pathInfo = {
route: [],
level: 0
};
for (let i = 0, j = root.children.length; i < j; i++) {
const curNodePathInfo = getDomDepthLevel(root.children[i]);
if (curNodePathInfo.level > pathInfo.level) {
pathInfo = curNodePathInfo;
}
}
pathInfo.route.unshift(root);
pathInfo.level += 1;
return pathInfo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment