I\'m coding a function in jquery that executes if Ctrl+R is pressed but I can\'t seem to find out what the left and right ctrl keycodes are... Can some
The Key Code for Ctrl key is 11.
11
$(document).keypress(function(e) { alert("Ctrl is pressed: " + e.ctrlKey); });