Skip to content

Instantly share code, notes, and snippets.

@tsevdos
Created December 30, 2013 09:49
Show Gist options
  • Save tsevdos/8179964 to your computer and use it in GitHub Desktop.
Save tsevdos/8179964 to your computer and use it in GitHub Desktop.
$$('a') // returns all link elements
document.querySelectorAll('a') // returns all link elements
$$('a') === document.querySelectorAll('a') // true!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment