Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created March 31, 2017 10:26
Show Gist options
  • Save RyoSugimoto/7e58893ccefc2b60b889808d7043b6da to your computer and use it in GitHub Desktop.
Save RyoSugimoto/7e58893ccefc2b60b889808d7043b6da to your computer and use it in GitHub Desktop.
DOMノードセットをforEachする。
Array.prototype.forEach.call(document.querySelectorAll('span'), function(node) {
console.log(node);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment