Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi there,

    You will either need to edit the core files (bad idea) or get a JavaScript developer to work on using the hover event to trigger the menu.

    All the best

    Thread Starter Le-Antonio

    (@le-antonio)

    Thanks. Does this look right to you?

    $(document).ready(function () {
                $('.menu-item').hover(function () {
                    $( '.appendLink' ).removeClass( 'rm-append-inactive' ).addClass( 'rm-append-active' );
    				$( 'ul.sub-menu' ).removeAttr( 'style' );
                });
            });

    Thanks

    Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi Le-Antonio,

    I am not sure if the above would work as I haven’t used it before, however I am not sure that it would work as it seems to only be removing classes and styles not actually animating anything.

    What happened when you tried it?

    All the best

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Submenu hover toggle’ is closed to new replies.