Home › Forums › WoodMart support forum › Tap Anywhere on Mobile Menu Item for Dropdown › Reply To: Tap Anywhere on Mobile Menu Item for Dropdown
March 6, 2022 at 7:31 am
#357754
Artem Temos
Keymaster
Hello,
Try to replace the code with the following
jQuery('.mobile-nav').on('click', '.wd-nav-mobile > li.menu-item-has-children > a', function(e){
e.preventDefault();
jQuery(this).parent().find('.wd-nav-opener').click();
});
Kind Regards