theonlychase
1/31/2018 - 3:49 PM

Add class on hover

Adds a class to a child element on hover

$("li.header-links").hover(function() {
    $(this).children('div.drop-nav-container').toggleClass('showmenu');
});