Skip to content

Instantly share code, notes, and snippets.

@ganglio
Created January 6, 2013 03:08
Show Gist options
  • Save ganglio/4464968 to your computer and use it in GitHub Desktop.
Save ganglio/4464968 to your computer and use it in GitHub Desktop.
JS: $ shortcut to querySelectorAll
function $(expr, con) {
return [].slice.call((con || document).querySelectorAll(expr));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment