Showing all 2 results

jQuery(document).ready(function($) { // Mobile click behavior $('.elementor-nav-menu--dropdown').on('click', 'li.menu-item-has-children > a', function(e) { if (window.matchMedia("(max-width: 991px)").matches) { e.preventDefault(); $(this).siblings('.sub-menu').slideToggle(200); $(this).toggleClass('menu-open'); } }); });