$(function(){ function showSubmenuOnHover() { $(".has-submenu").on("mouseover", function() { $(this).find('ul.submenu').stop( true, true ).fadeIn('fast'); $(this).addClass('active'); }).on("mouseleave", function() { $(this).find('ul.submenu').stop( true, true ).fadeOut('fast'); $(this).removeClass('active'); }); } // Nav show sub menu on click function showSubmenuOnClick() { $(".has-submenu").on("click", function(e) { $(this).find('ul.submenu').stop( true, true ).slideToggle('fast'); $(this).closest('li').toggleClass('active'); }); $(".confetti-wrapper").on("click", function(e) { $('ul.submenu').hide(); }) $(".confetti-wrapper").on("touchmove", function(e) { $('ul.submenu').hide(); }) } var $window = $(window); function checkWidth() { var windowsize = $window.width(); if (windowsize < 960) { // mobile $('.nav').hide(); showSubmenuOnClick(); } if (windowsize > 960) { $('.nav').show(); showSubmenuOnHover(); } } // Execute on load checkWidth(); // Bind event listener $(window).resize(checkWidth); }); /*******************************************************************/ /* ftrtch dino */ /* [type: JS] [file:hub-article-menu] [67.3863] DESIGN*/ /*******************************************************************/ /* 0.1 P>P */ /* db 143 */