Skip to content

Instantly share code, notes, and snippets.

@icodesido
Created November 1, 2016 14:13
Show Gist options
  • Save icodesido/4d455ecb1e33febd13f7ba4b97a0c47d to your computer and use it in GitHub Desktop.
Save icodesido/4d455ecb1e33febd13f7ba4b97a0c47d to your computer and use it in GitHub Desktop.
Node List iteration
var divs = document.querySelectorAll('div');
Array.prototype.forEach.call(divs, function (i) {
var elem = i;
console.log(elem.innerHTML);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment