Skip to content

Instantly share code, notes, and snippets.

@technomaz
Created July 16, 2020 17:58
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 technomaz/7c8cafe9c080bbe7a13aaec882d26f4e to your computer and use it in GitHub Desktop.
Save technomaz/7c8cafe9c080bbe7a13aaec882d26f4e to your computer and use it in GitHub Desktop.
DOM Get Element functions
// Get single element by ID
var el=document.getElementById('test');
// Get single element by class name
var el=document.getElementsByClassName('test')[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment