Skip to main content Scroll Top

Hello world!

jQuery(function($) { // Listen for taps on the little arrow toggle $(document).on("click touchstart", ".menu-item-parent-toggle", function(e) { e.preventDefault(); e.stopPropagation(); var li = $(this).closest("li"); // Toggle open class li.toggleClass("submenu-open"); // Show/hide submenu li.children(".sub-menu").slideToggle(250); }); // Also make tapping the parent text open submenu (optional) $(document).on("click touchstart", "li.menu-item-has-children > a", function(e) { // Only on mobile if (window.innerWidth <= 1024) { e.preventDefault(); $(this).siblings(".menu-item-parent-toggle").trigger("click"); } }); });