Created
December 16, 2019 10:38
-
-
Save nickeforsberg/cbc8d1c084cb23124d0c002d87ff8290 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
// Get elements | |
// jQuery | |
var myDivs = $('.my-div'); // Get all divs | |
const myDiv = document.querySelector('.myDiv'); // Get first div | |
const myDivs = document.querySelectorAll('.myDiv'); // Get all divs// How to handle click events |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment