Javascript examples for jQuery Method and Property:keyup
Keydown, keyup, and check key code
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.4.4.min.js"></script> <script type="text/javascript"> $(window).load(function(){/*from w w w .j a va 2 s . c om*/ $(document).keyup(function(e) { if (e.ctrlKey && e.keyCode == 81) { console.log("CTRL+Q Pressed"); } }); }); </script> </head> <body> </body> </html>