Skip to content

Instantly share code, notes, and snippets.

@mgrahamjo
Created August 7, 2015 17:11
Show Gist options
  • Save mgrahamjo/fda182e5189ddd97626b to your computer and use it in GitHub Desktop.
Save mgrahamjo/fda182e5189ddd97626b to your computer and use it in GitHub Desktop.
Alternative to jQuery
var $ = function(selector) {
var els = [].slice.call(document.querySelectorAll(selector));
return els.length > 1 ? els : els[0];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment