I'm firing the plugin on click.
$('#activate_mmenu').on('click', function(){
$('#menu').mmenu();
});
is there a way to bind another function after the plugin has been activated?
something like this:
$('#activate_mmenu').on('click', function(){
$('#menu').mmenu(function(){
alert('plugin is activated!');
});
});