Skip to content

Instantly share code, notes, and snippets.

@dolftax
Created October 24, 2015 02:18
Show Gist options
  • Select an option

  • Save dolftax/0c370c9a934934bc1e6d to your computer and use it in GitHub Desktop.

Select an option

Save dolftax/0c370c9a934934bc1e6d to your computer and use it in GitHub Desktop.
jQuery isn't a solution for everything
var $ = function (el) {
return document.querySelector(el);
};
var $$ = function (el) {
return document.querySelectorAll(el);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment