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.

Re: hide menu items on click and cursor sign

Home Forums Older releases 0.9.x hide menu items on click and cursor sign Re: hide menu items on click and cursor sign

#1770
admin
Keymaster

Hi, you could use the following:

$('#main-menu').bind('select.smapi', function(e, item) {
	$('#menu-button').click();
});

If you use a different id for your menu button, just update #menu-button accordingly.

Let me know if you still have any troubles (a live demo would also help very much).

Cheers!