サラッとjQueryプラグインを書けると(・∀・)イイ!!感じ
某サイトにて、type=”text” の input 要素を、こんな感じで jQuery を使って無効にしていたのですが、 function disable_enter(e) { if (e.which == 13) { return false; } return true; } $(function() { $(‘.noEnter’).keypress(disable_…
某サイトにて、type=”text” の input 要素を、こんな感じで jQuery を使って無効にしていたのですが、 function disable_enter(e) { if (e.which == 13) { return false; } return true; } $(function() { $(‘.noEnter’).keypress(disable_…