Skip to content

Instantly share code, notes, and snippets.

@skorotkiewicz
Created December 8, 2016 15:21
Show Gist options
  • Save skorotkiewicz/83233346605387d22a547c93d2d56b8c to your computer and use it in GitHub Desktop.
Save skorotkiewicz/83233346605387d22a547c93d2d56b8c to your computer and use it in GitHub Desktop.
jQuery Ctrl + S for save
// jQuery Ctrl + S for save
$(document).keydown(function(e) {
if(e.ctrlKey && e.altKey && e.which === 83) {
save();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment