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: submenu onFocus event

Home Forums Older releases 1.0.x submenu onFocus event Reply To: submenu onFocus event

#3363
admin
Keymaster

Not sure if you still need this but you would have to use the API in one way or another. Check the following events:

http://www.smartmenus.org/docs/#beforeshow
http://www.smartmenus.org/docs/#show

You could check if any sub menu is visible at any given moment, for example, like this:

var $subMenu = $('#mySubMenu'); // the id of the UL element
if ($subMenu.is(':visible')) {
	// ...
}