Skip to content

Instantly share code, notes, and snippets.

@vikt82
Created March 11, 2015 18:36
Show Gist options
  • Select an option

  • Save vikt82/c3db24fdd9833a454531 to your computer and use it in GitHub Desktop.

Select an option

Save vikt82/c3db24fdd9833a454531 to your computer and use it in GitHub Desktop.

Revisions

  1. vikt82 created this gist Mar 11, 2015.
    10 changes: 10 additions & 0 deletions show-hight.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    показывает при навидении мышки и прячет при отводе
    <script>
    $('#show-menu')
    .mouseenter(function() {
    $('.other-drop').show();
    })
    .mouseleave(function() {
    $('.other-drop').hide();
    });
    </script>