-
-
Notifications
You must be signed in to change notification settings - Fork 23
multiple megamenu in website #594
Copy link
Copy link
Closed
Labels
Description
i use mod_astroid_menu multiple time in my site and I want to change data-asteroid-trigger for each module, but the settings of the first module are executed for all modules
you use
$('[data-megamenu]').JDMegaMenu();
in your js file
media/astroid/js/megamenu.js
but this code only work for the first menu
please change that to
$('[data-megamenu]').each(function() {
$(this).JDMegaMenu();
});
Reactions are currently unavailable