Skip to content

Instantly share code, notes, and snippets.

@jjmu15
Created January 27, 2014 10:07
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 jjmu15/8646083 to your computer and use it in GitHub Desktop.
Save jjmu15/8646083 to your computer and use it in GitHub Desktop.
Create $ selector in vanilla JS
// This gives us simple dollar function and event binding
var $ = document.querySelectorAll.bind(document);
Element.prototype.on = Element.prototype.addEventListener;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment