Home › Forums › Basel support forum › Menu on touch devices like iPad › Reply To: Menu on touch devices like iPad
October 14, 2017 at 9:22 am
#21639
Artem Temos
Keymaster
Hello,
Try to add the following code snippet to the Custom JS area in Theme Settings to do this
jQuery(document).ready(function() {
jQuery('.menu-item').on('click', '> a', function() {
if(jQuery(this).parent().hasClass('item-menu-opened'))
window.location.href = jQuery(this).attr('href');
})
});
Regards