Skip to content

Instantly share code, notes, and snippets.

@jrc03c
Created June 22, 2025 12:59
Show Gist options
  • Save jrc03c/e3588a7a348d14210d06c2aeff902930 to your computer and use it in GitHub Desktop.
Save jrc03c/e3588a7a348d14210d06c2aeff902930 to your computer and use it in GitHub Desktop.
Get the "depth" of an element in a web page
function getElementDepth(el) {
return el.parentElement ? 1 + getElementDepth(el.parentElement) : 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment