Skip to content

Instantly share code, notes, and snippets.

@manojiksula
Created September 2, 2020 15:55
Show Gist options
  • Save manojiksula/7d686cc12b1c18115d4b14cd7083fd85 to your computer and use it in GitHub Desktop.
Save manojiksula/7d686cc12b1c18115d4b14cd7083fd85 to your computer and use it in GitHub Desktop.

on hover menu

<div class="user_initials">MC</div>
<div class="user-menu-wrapper">
Menu
</div>
<script>
var menu = $('.user-menu-wrapper');
$('.user_initials, .user-menu-wrapper', context).once('userMenuHover').hover(
	function () {
	  menu.stop().slideDown();
	},
	function () {
	  menu.stop().slideUp();
	}
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment