Skip to content

Instantly share code, notes, and snippets.

@yuheiomori
Created May 10, 2012 13:28
Show Gist options
  • Save yuheiomori/2652992 to your computer and use it in GitHub Desktop.
Save yuheiomori/2652992 to your computer and use it in GitHub Desktop.
Enterでsubmitさせない
// 検索ワード入力フィールドでEnterを押下してもSubmitさせない
$('input[name=search_query]').keypress(function(e){
return !((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment