Hello,
Thank You so much for this Valuable Suggestion! :)
We currently do not have this Functionality implemented by Default but is already Built-in only for Windows Mobile Devices. However, you can definitely consider implementing this Site-Wide by find the following code in the js/functions.js File:
if( SEMICOLON.isMobile.Windows() ) {
if( $().superfish ){
$('#primary-menu > ul, #primary-menu > div > ul,.top-links > ul').superfish('destroy').addClass('windows-mobile-menu');
} else {
$('#primary-menu > ul, #primary-menu > div > ul,.top-links > ul').addClass('windows-mobile-menu');
console.log('menufunctions: Superfish not defined.');
}
$( '#primary-menu ul li:has(ul)' ).append('[](#)');
$( '#primary-menu ul li.sub-menu' ).children('a.wn-submenu-trigger').click( function(e){
$(this).parent().toggleClass('open');
$(this).parent().find('> ul, > .mega-menu-content').stop(true,true).toggle();
return false;
});
}
and removing the If Condition that encloses the Code. This should definitely work fine.
Let us know if we can help you with anything else or if you find any further issues.