Skip to content

Instantly share code, notes, and snippets.

@illusi03
Forked from KacperKozak/ctrl-enter.js
Created February 12, 2023 08:54
Show Gist options
  • Save illusi03/73957beed3f5184a6cf4bfc61bcb879a to your computer and use it in GitHub Desktop.
Save illusi03/73957beed3f5184a6cf4bfc61bcb879a to your computer and use it in GitHub Desktop.
[Ctrl] + [Enter] to Submit Forms
document.body.addEventListener('keydown', function(e) {
if(!(e.keyCode == 13 && (e.metaKey || e.ctrlKey))) return;
var target = e.target;
if(target.form) {
target.form.submit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment