Skip to content

Instantly share code, notes, and snippets.

@pinkhominid
Created November 18, 2019 15:25
Show Gist options
  • Save pinkhominid/b930061aa99eb996e7191534eeaebf5a to your computer and use it in GitHub Desktop.
Save pinkhominid/b930061aa99eb996e7191534eeaebf5a to your computer and use it in GitHub Desktop.
Short-hand querySelector/querySelectorAll
// Found in a Lea Verou project and tweaked :) (https://github.com/LeaVerou/animatable/blob/gh-pages/index.js#L1)
function $(expr, con) { return (con || document).querySelector(expr); }
function $$(expr, con) { return Array.from((con || document).querySelectorAll(expr)); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment