Home Forums Basel support forum Menu on touch devices like iPad Reply To: Menu on touch devices like iPad

#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