Skip to content

Instantly share code, notes, and snippets.

@ColtHands
Last active September 16, 2020 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColtHands/d713e975be5696ad2ace16ee82518336 to your computer and use it in GitHub Desktop.
Save ColtHands/d713e975be5696ad2ace16ee82518336 to your computer and use it in GitHub Desktop.
jQuery to Vanilla.js

jQuery to Vanilla.js

Selecting elements

$("selector")

  • document.querySelector('#id')
  • document.querySelectorAll('.class > ul li')
  • document.getElementById('id')
  • document.getElementsByClassName('class')
  • document.getElementsByTagName('tagname')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment