Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: hamburger menu not being removed

Home Forums Older releases 1.0.x hamburger menu not being removed Reply To: hamburger menu not being removed

#3118
admin
Keymaster

I saw you are using an iframe to load your links inside, so you could use, for example, something like this:

// simulate a click on the menu toggle button on menu item select in mobile view
$('#main-menu').bind('select.smapi', function(e, item) {
	var obj = $(this).data('smartmenus');
	if (obj.isCollapsible()) {
		$('#main-menu-state')[0].click();
	}
});