Reputation: 231
I want to catch the keyboard right click event. I can't able to find keycode for that. Anyone have?
Upvotes: 0
Views: 9234
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