Skip to content

Instantly share code, notes, and snippets.

@webdevbrian
Created May 20, 2013 02:43
Show Gist options
  • Save webdevbrian/5610155 to your computer and use it in GitHub Desktop.
Save webdevbrian/5610155 to your computer and use it in GitHub Desktop.
jQuery-like selectors. Uses '$$'.
function $$(selector){
return Array.prototype.slice.call(document.querySelectorAll(selector), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment