I want to scan a div for all childNodes including the ones that are nestled within other elements. Right now I have this:
var t = document.getElementById(\'DivId
If you're looking for all HTMLElement on modern browsers you can use:
HTMLElement
myDiv.querySelectorAll("*")