Skip to content

Instantly share code, notes, and snippets.

@incompl
Last active August 29, 2015 14:02
Show Gist options
  • Save incompl/3a444e9d981e0d2214da to your computer and use it in GitHub Desktop.
Save incompl/3a444e9d981e0d2214da to your computer and use it in GitHub Desktop.
microquery
var $ = function(selector, context) {
if (context === undefined) {
context = document;
}
var nl = context.querySelectorAll(selector);
return Array.prototype.slice.call(nl);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment