Last active
June 9, 2023 11:40
-
-
Save alexkingorg/03bcc2004c0bc9145e23 to your computer and use it in GitHub Desktop.
Submit a form on Command+Enter when in a textarea field.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function($) { | |
// add a handler for form submit (makes an AJAX call) | |
$(document).on('submit', 'form.my-class', myFormSubmitHandler); | |
// submit form on command + enter if in a textarea | |
$(document).on('keydown', 'body', function(e) { | |
if (!(e.keyCode == 13 && e.metaKey)) return; | |
var $target = $(e.target); | |
if ($target.is('textarea')) { | |
$target.closest('form').submit(); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you~
I just search about that subject and finally cleared!