Skip to content

Instantly share code, notes, and snippets.

@glebcha
Created September 16, 2013 07:08
Show Gist options
  • Save glebcha/6577482 to your computer and use it in GitHub Desktop.
Save glebcha/6577482 to your computer and use it in GitHub Desktop.
jQuery-like vanilla.js selector
function $$(selector){
return Array.prototype.slice.call(document.querySelectorAll(selector), 0);
}
$$('div').length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment