Skip to content

Instantly share code, notes, and snippets.

@vikt82
Created March 11, 2015 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vikt82/c3db24fdd9833a454531 to your computer and use it in GitHub Desktop.
Save vikt82/c3db24fdd9833a454531 to your computer and use it in GitHub Desktop.
проказывает при навидении и прячет при отводе
показывает при навидении мышки и прячет при отводе
<script>
$('#show-menu')
.mouseenter(function() {
$('.other-drop').show();
})
.mouseleave(function() {
$('.other-drop').hide();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment