Created
May 20, 2020 16:35
-
-
Save henriquetroiano/9eb47ae699569d623e3ac44217063916 to your computer and use it in GitHub Desktop.
Selectors
This file contains hidden or 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
const menu__sel = document.querySelectorAll('.menu_content li'); // select all items from menu | |
menu__sel.forEach((thisLi) => { | |
thisLi.addEventListener('mouseover', function() { | |
thisLi.classList.add('active') | |
}) | |
thisLi.addEventListener('mouseout', function() { | |
thisLi.classList.remove('active') | |
}) | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment