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

    (@responsivemenu)

    Hi Jaquin,

    You will need to create some custom javascript in order to do this.

    If you are not so knowledgable about JavaScript then you will need to get a custom developer to do this for you.

    All the best

    Thread Starter jaquintd

    (@jaquintd)

    If anyone happens to want a close button inside the menu, you can make a hyperlink (in the additional content within the plugin settings) and then use some script like below:

    jQuery('#rm-additional-content a').on('click',function(e){
        e.preventDefault();
    	e.stopPropagation();
    	jQuery(document).trigger('click');
    });
    Thread Starter jaquintd

    (@jaquintd)

    for example with above:

    <a href="#"><strong>close</strong></a>

    Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi Jaquintd,

    Again thanks for the great suggestions!

    All the best

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Closing from inside menu’ is closed to new replies.