Skip to content

Instantly share code, notes, and snippets.

@emanoelqueiroz
Last active January 30, 2017 10:48
Show Gist options
  • Save emanoelqueiroz/ebd52665abb061b40e7fc2c0790f8b07 to your computer and use it in GitHub Desktop.
Save emanoelqueiroz/ebd52665abb061b40e7fc2c0790f8b07 to your computer and use it in GitHub Desktop.
não acabado
function findFirstLetter () {
let body = document.getElementsByTagName("body")[0];
function childRun(ele) {
Object.keys(ele).forEach(
k => {
let childEle = ele[k];
if (childEle.children.length > 1)
console.log(childEle.children);
else
childRun(childEle);
});
}
childRun(body.children);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment