Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created April 9, 2018 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckyshot/e43eeff313be1a995409a5a90e9c5344 to your computer and use it in GitHub Desktop.
Save luckyshot/e43eeff313be1a995409a5a90e9c5344 to your computer and use it in GitHub Desktop.
QuerySelector short-hand
$ = function(sel, ctx){return (ctx || document).querySelector(sel)}
$$ = function(sel, ctx){return (ctx || document).querySelectorAll(sel)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment