Home Forums Basel support forum Make some mobile sidebar menu items open sub-menu Reply To: Make some mobile sidebar menu items open sub-menu

#74896

Artem Temos
Keymaster

Hi,

Try to add the following code snippet to the Custom JS area on a document ready in Theme Settings to do this

jQuery('.mobile-nav').on('click', '.menu-item a:not([href])', function(e) {
	e.preventDefault();
	jQuery(this).parent().find('>.icon-sub-menu').click();
})

Regards