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: Vertical menu expanded on page load

Home Forums Older releases 0.9.x Vertical menu expanded on page load Reply To: Vertical menu expanded on page load

#2335
admin
Keymaster

Yep, you can achieve it by using the following mod:

$(function() {
	$('#main-menu').bind('activate.smapi', function(e, item) {
		var $deepestCurrent = $('#main-menu a.current').eq(-1);
		if ($(item).is('#main-menu > li > a.current') && item != $deepestCurrent[0]) {
			setTimeout(function() { $('#main-menu').smartmenus('itemActivate', $deepestCurrent); });
		}
	});
});

Let me know if you have any troubles.