Skip to content

Instantly share code, notes, and snippets.

@Manyaka
Created September 19, 2019 10:42
Show Gist options
  • Save Manyaka/82159aebf7d3313f81cbccb6274f02fd to your computer and use it in GitHub Desktop.
Save Manyaka/82159aebf7d3313f81cbccb6274f02fd to your computer and use it in GitHub Desktop.
Простенькая имитация ДОМ дерева
let html = document.children[0];
for (let i = 0; i < html.children.length; i++) {
let child = html.children[i];
console.log(child.tagName.toLowerCase());
for (let j = 0; j < child.children.length; j++) {
let innerChild = child.children[j];
console.log('|---' + innerChild.tagName.toLowerCase());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment