Line 183: | Line 183: | ||
<script> | <script> | ||
+ | |||
$(document).ready(function () { | $(document).ready(function () { | ||
− | + | $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub'); | |
− | + | $(".menu > ul > li").hover(function (e) { | |
− | + | $(this).css({"background-color":"#f0f0f0"}); | |
− | + | $(this).children("ul").stop(true, false).slideToggle(300); | |
− | + | e.preventDefault(); | |
− | + | }); | |
− | + | $(".menu > ul > li").mouseleave(function (e) { | |
− | + | $(this).css({"background-color":"#fff"}); | |
− | + | $(this).children("ul").hide(); | |
− | + | e.preventDefault(); | |
− | + | }); | |
}); | }); | ||
</script> | </script> |
Revision as of 08:12, 3 October 2018