Skip to content

Instantly share code, notes, and snippets.

@toshinarin
Created October 6, 2017 02:52
Show Gist options
  • Save toshinarin/81f42296353bee3507a978e0d09bf100 to your computer and use it in GitHub Desktop.
Save toshinarin/81f42296353bee3507a978e0d09bf100 to your computer and use it in GitHub Desktop.
Iterate over elements
Array.prototype.forEach.call(document.querySelectorAll('.someClass'), function(node) {
console.log(node)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment