open
Trigger this event to manually open the menu.
Code example:
$("#my-menu").mmenu();
$("#my-menu").trigger( "open.mm" );
opening
Triggered when the menu is opening.
Code example:
$("#my-menu").mmenu();
$("#my-menu").on(
"opening.mm",
function()
{
alert( "The menu will now be opened." );
}
);
opened
Triggered when the menu is finished opening.
Code example:
$("#my-menu").mmenu();
$("#my-menu").on(
"opened.mm",
function()
{
alert( "The menu has just been opened." );
}
);