Skip to content

Instantly share code, notes, and snippets.

@arkaitzgarro
Created November 16, 2014 10:03
Show Gist options
  • Save arkaitzgarro/bda0f0316eab18f742df to your computer and use it in GitHub Desktop.
Save arkaitzgarro/bda0f0316eab18f742df to your computer and use it in GitHub Desktop.
DOM selector
var $ = function(selector) {
var elems;
// TODO: attach to Element prototipe
elems = document.querySelectorAll(selector);
if (elems && elems.length === 1) {
return elems[0];
} else if (elems && elems.length > 1) {
return elems;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment