Hello,
I was wondering how to change it so dropdown menus are activated on click instead of mouse hover.
Thanks!
Hey!
Refer to:
https://kriesi.at/support/topic/show-submenu-on-click-instant-hover/#post-291367
Regards,
Josue
Hello Josue,
That worked for regular drop downs but it doesn’t work for megamenus
Is there a way to get it work on megamenus too?
Thanks,
Hi!
Change this too:
megaItems.each(function(i){
$(this).hover(
function()
{
delayCheck[i] = true;
setTimeout(function(){megaDivShow(i); },options.delay);
},
function()
{
delayCheck[i] = false;
setTimeout(function(){megaDivHide(i); },options.delay);
}
);
});
To:
megaItems.each(function(i){
$(this).click(
function()
{
delayCheck[i] = true;
setTimeout(function(){megaDivShow(i); },options.delay);
},
function()
{
delayCheck[i] = false;
setTimeout(function(){megaDivHide(i); },options.delay);
}
);
});
Best regards,
Josue