Skip to content

Instantly share code, notes, and snippets.

@stevelippert
Created January 6, 2015 17:01
Show Gist options
  • Save stevelippert/21f5a5786786d6b54cec to your computer and use it in GitHub Desktop.
Save stevelippert/21f5a5786786d6b54cec to your computer and use it in GitHub Desktop.
jQuery hotkeys
<script charset="utf8" src="/libs/js/jquery.hotkeys.min.js"></script>
//When the ALT + N keys are pressed together, trigger the button click (as it has additional logic to process).
$(document).on("keydown", null, "alt+n", function(){
$("#BUTTON_ID").trigger("click");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment