Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created February 9, 2014 18:38
Show Gist options
  • Select an option

  • Save jswhisperer/8903973 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/8903973 to your computer and use it in GitHub Desktop.
Each, Empty, Filter nojq
var elements = document.querySelectorAll(selector);
Array.prototype.forEach.call(elements, function(el, i){
});
el.innerHTML = '';
Array.prototype.filter.call(document.querySelectorAll(selector), filterFn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment