Skip to content

Instantly share code, notes, and snippets.

@malpaso
Created June 23, 2016 00:52
Show Gist options
  • Select an option

  • Save malpaso/c82d38e349861d093926a9be00a4a372 to your computer and use it in GitHub Desktop.

Select an option

Save malpaso/c82d38e349861d093926a9be00a4a372 to your computer and use it in GitHub Desktop.

Revisions

  1. malpaso created this gist Jun 23, 2016.
    9 changes: 9 additions & 0 deletions jquery_prevent_form_enter_key.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    $(function() {
    $('#formId').on('keyup keypress', function(e) {
    var keyCode = e.keyCode || e.which;
    if (keyCode === 13) {
    e.preventDefault();
    return false;
    }
    });
    });