Guest User

Untitled

a guest
Jul 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>JQuery Hotkeys</title>
  4. <script src="jquery-1.6.2.min.js"></script>
  5. <script src="jquery.hotkeys-0.7.9.js"></script>
  6. <script>
  7. $(document).bind('keydown', 'ctrl+1', function() {
  8. alert('You found the hotkey ctrl+1!');
  9. });
  10.  
  11. $(document).bind('keydown', 'ctrl+2', function() {
  12. alert('You found the hotkey ctrl+2!');
  13. });
  14.  
  15.  
  16. </script>
  17. </head>
  18. <body>
  19. HOYKEY DEMO : Press 'Ctrl+1/Ctrl+2'
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment