We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example: ctrl+s in the current context
Capture on the entire document
Relay to the current context (at the top of the stack)
Management at the view level (if mode = edit): associate with the main ACTION.SAVE button
$(document).bind("keyup keydown", function(e){ if(e.ctrlKey && (e.which == 83 || e.which == 115)){ myfunction(); } }); function myfunction(){ alert("Key pressed Ctrl+s"); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example: ctrl+s in the current context
Capture on the entire document
Relay to the current context (at the top of the stack)
Management at the view level (if mode = edit): associate with the main ACTION.SAVE button
The text was updated successfully, but these errors were encountered: