Manikandan Ram
Manikandan Ram

Reputation: 231

What is the keycode for keyboard rightclick?

I want to catch the keyboard right click event. I can't able to find keycode for that. Anyone have?

Upvotes: 0

Views: 9234

Answers (2)

Miguel Machado
Miguel Machado

Reputation: 298

$('input').bind('contextmenu', function(e) {
    alert('keyboard right click');
    console.log(e);
});

Note: this will also work for the mouse right click.

or

$("input").keydown(function (e) {
    if (e.keyCode == 93) {
        alert('rightclick');
    }
});

Note: keycode 93 for winmenu

You can check this Page for keycodes

Upvotes: 0

Related Questions