Skip to content

Instantly share code, notes, and snippets.

@hardfire
Created March 14, 2014 16:36
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 hardfire/9551408 to your computer and use it in GitHub Desktop.
Save hardfire/9551408 to your computer and use it in GitHub Desktop.
/* HTML Element
<div class="group awesome" id="new">Test</div>
*/
//js
var classes = document.getElementById('new').classList;
console.log(classes);
/* console output
0: group
1: awesome
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment