Skip to content

Instantly share code, notes, and snippets.

@FLasH3r
Forked from AllThingsSmitty/querySelector.js
Last active August 29, 2015 14:23
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 FLasH3r/4f953363410ba6cc6df3 to your computer and use it in GitHub Desktop.
Save FLasH3r/4f953363410ba6cc6df3 to your computer and use it in GitHub Desktop.
// returns first element selected - $('input[name="food"]')
var $ = document.querySelector.bind(document);
// return array of selected elements - $$('img.dog')
var $$ = document.querySelectorAll.bind(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment