Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created August 21, 2014 06:34
Show Gist options
  • Save RyoSugimoto/f859fc4641c0520b5fa9 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/f859fc4641c0520b5fa9 to your computer and use it in GitHub Desktop.
Enter/Returnキーによるサブミットを無効化するjQueryプラグイン。
;(function (window, document, $) {
$.fn.cancelSubmit = function() {
return this.each(function () {
$(this)
.find(':text').on('keypress', function (e) {
if (e.keyCode === 13) {
e.preventDefault();
}
});
});
};
}(window, document, jQuery, undefined));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment