function openSearch() { document.getElementById("myOverlay").style.display = "block"; } function closeSearch() { document.getElementById("myOverlay").style.display = "none"; } /*$('ul.navbar-nav li.dropdown').hover(function() { $(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(700); }, function() { $(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(700); });*/ // Prevent closing from click inside dropdown $(document).on('click', '.dropdown-menu', function (e) { e.stopPropagation(); }); // make it as accordion for smaller screens if ($(window).width() < 992) { $('.dropdown-menu a').click(function(e){ e.preventDefault(); if($(this).next('.submenu').length){ $(this).next('.submenu').toggle(); } $('.dropdown').on('hide.bs.dropdown', function () { $(this).find('.submenu').hide(); }) }); }