Skip to content

Instantly share code, notes, and snippets.

@ziishaned
Last active February 23, 2017 17:17
Show Gist options
  • Save ziishaned/45f382281715e611e739549fab01857e to your computer and use it in GitHub Desktop.
Save ziishaned/45f382281715e611e739549fab01857e to your computer and use it in GitHub Desktop.
Submit the form by pressing command + enter button
(function() {
$('.textarea').on('keyup', function(e) {
if (e.which == 13 && ! e.shiftKey) {
// Write AJAX call here
// OR Just submit the form using the below code
$(this).closest('form').submit();
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment