Skip to content

Instantly share code, notes, and snippets.

@aboutaaron
Created September 5, 2013 17:42
Show Gist options
  • Save aboutaaron/6453523 to your computer and use it in GitHub Desktop.
Save aboutaaron/6453523 to your computer and use it in GitHub Desktop.
Iterate over DOM nodelist in JavaScript. A reminder.
[].forEach.call(
document.querySelectorAll('.awsome'),
function(el){
doStuffWith(el);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment