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

    (@responsivemenu)

    Hi Jaquintd,

    This is something I will need to look into more about to provide you a good answer.

    All the best

    Thread Starter jaquintd

    (@jaquintd)

    I was able to solve the enter key issue by adding to my scripts:

    jQuery('.responsivemenu').keyup(function(e){
        e.preventDefault();
        e.stopPropagation();
        if(e.which == 13){
            $('#click-menu').trigger('click');
        }
    });
    Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi Jaquintd,

    Great response and thanks very much for the answer, I will see if I can squeeze this into a future version.

    All the best

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Keyboard Accessible?’ is closed to new replies.