AbdelGawad (Talk | contribs) |
AbdelGawad (Talk | contribs) |
||
Line 20: | Line 20: | ||
function menu_functionality() { | function menu_functionality() { | ||
− | + | ||
− | + | ||
+ | |||
+ | |||
+ | //show subnav on hover | ||
+ | $(".menu_button").mouseenter(function() { | ||
+ | $(this).children().stop(true, true).slideDown(); | ||
+ | }); | ||
+ | |||
+ | //hide submenus on exit | ||
+ | $(".menu_button").mouseleave(function() { | ||
+ | $(this).find("ul").stop(true, true).slideUp(); | ||
+ | }); | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Revision as of 20:34, 7 August 2017