javascript - Iterate through HTML DOM and get depth - Stack Overflow

PHOTO EMBED

Tue May 03 2022 15:01:20 GMT+0000 (Coordinated Universal Time)

Saved by @luckymage #javascript

function element_list(el,depth) {
    console.log(el+' '+depth);
    for(var i=0; i<el.children.length; i++) {
        element_list(el.children[i],depth+1);
    }
}
element_list(document,0);
content_copyCOPY

recursive,dom,tree,depth

https://stackoverflow.com/questions/33903929/iterate-through-html-dom-and-get-depth