Home > jquery-shortcuts

jquery-shortcuts

Jquery-shortcuts is a project mainly written in JavaScript, it's free.

A very lightweight approach to keyboard shortcuts (hotkeys) with jQuery

jQuery Shortcuts

A very lightweight approach to keyboard shortcuts (hotkeys) with jQuery.

Example Usage

$(document).shortcuts({
  "Q": {
    keys: [81],
    desc: "Log Q to the console",
    func: function() { console.log("You pressed Q") }
  },
  "ALT I": {
    keys: [18, 73],
    desc: "Log this key combination to the console",
    func: function() { console.log("You pressed ALT and I") }
  }
});

License

Copyright © 2009 Jason L Perry

Dual licensed under the MIT and GPL licenses. Uses the same license as jQuery.