Created
June 27, 2017 20:42
-
-
Save jmlavoier/1c9d1553751289ad41c3c0aa0e5d62b9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(document.getElementById('cont')); // <div id="cont" class="content">...</div> | |
console.log(document.getElementsByClassName('content')); // [div#cont.content] | |
console.log(document.getElementsByTagName('div')); // [div, div, div#cont.content] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment