Created
June 27, 2018 12:33
-
-
Save mrkacan/e7c1a978ad848ab0fcd2bdc22f8289db to your computer and use it in GitHub Desktop.
Jquery on hover menu
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
$('.dropdownLi').on('mouseenter',function () { | |
$(this).children('ul').slideDown(300).css('display', 'block'); | |
$(".dropdownLi").mouseleave(function () { | |
$(".dropdownSection").fadeOut(300) | |
}); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment