Skip to content

Instantly share code, notes, and snippets.

@jrc03c
Created June 22, 2025 12:57
Show Gist options
  • Save jrc03c/b6e5f4bb3caf1e8625f899d9035db1e3 to your computer and use it in GitHub Desktop.
Save jrc03c/b6e5f4bb3caf1e8625f899d9035db1e3 to your computer and use it in GitHub Desktop.
Get all elements in a web page
function getAllElements(root) {
root = root || document.body
const out = [root]
if (root.children) {
Array.from(root.children).forEach(child => {
out.push(...getAllElements(child))
})
}
return out
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment