(function($) { "use strict"; $('nav .dropdown').hover(function(){ var $this = $(this); $this.addClass('show'); $this.find('> a').attr('aria-expanded', true); $this.find('.dropdown-menu').addClass('show'); }, function(){ var $this = $(this); $this.removeClass('show'); $this.find('> a').attr('aria-expanded', false); $this.find('.dropdown-menu').removeClass('show'); }); })(jQuery); $(function(){ $("#skl-menu-1").selectmenu(); $("#skl-menu-2").selectmenu(); $("#skl-menu-1").on("selectmenuchange", function(event, ui){ let sUrl = $(this).val(); $(location).attr('href',sUrl); }); $("section.sub-menu").stickOnScroll({ topOffset: 0, bottomOffset: 5, viewport: window, setParentOnStick: true, setWidthOnStick: true, onStick:function(el){ console.log("stick"); // do something }, onUnStick:function(el){ console.log("unstick"); // do something } }); });