Last active
June 9, 2023 11:40
-
-
Save alexkingorg/03bcc2004c0bc9145e23 to your computer and use it in GitHub Desktop.
Revisions
-
alexkingorg revised this gist
Apr 27, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ 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; -
alexkingorg created this gist
Apr 27, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ 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 textareas $(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(); } }); });