ambethia / jquery-shortcuts
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
README.md | Wed Oct 28 13:24:23 -0700 2009 | |
| |
jquery.shortcuts.js | Wed Oct 28 13:26:11 -0700 2009 | |
| |
jquery.shortcuts.min.js | Wed Oct 28 13:24:23 -0700 2009 |
README.md
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.
