Skip to content

Instantly share code, notes, and snippets.

@bttmly
Created June 29, 2014 19:59
Show Gist options
  • Save bttmly/61fd0819d8bad910d47f to your computer and use it in GitHub Desktop.
Save bttmly/61fd0819d8bad910d47f to your computer and use it in GitHub Desktop.
Miniscule DOM selection function that returns arrays
function $( selector, context ) {
return [].slice.call( ( context || document ).querySelectorAll( selector ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment