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') |