Difference between revisions of "Template:NAU-CHINA/header"

Line 186: Line 186:
 
   $(document).ready(function () {
 
   $(document).ready(function () {
 
       $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub');
 
       $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub');
       $(".menu > ul > li").hover(function (e) {
+
       $(".menu > ul > li").hover(function () {
 
         $(this).css({"background-color":"#f0f0f0"});
 
         $(this).css({"background-color":"#f0f0f0"});
 
         $(this).children("ul").stop(true, false).slideToggle(300);
 
         $(this).children("ul").stop(true, false).slideToggle(300);
          e.preventDefault();
+
 
 
       });
 
       });
       $(".menu > ul > li").mouseleave(function (e) {
+
       $(".menu > ul > li").mouseleave(function () {
 
         $(this).css({"background-color":"#fff"});
 
         $(this).css({"background-color":"#fff"});
 
         $(this).children("ul").hide();
 
         $(this).children("ul").hide();
        e.preventDefault();
+
 
 
       });
 
       });
 
   });
 
   });
 
</script>
 
</script>

Revision as of 08:12, 3 October 2018