jQuery - Disable enter key on form submit - (keycode 13)
Search
Tag Search
apache
jquery
svn
regular expressions
disable cache
hand drawing
art
subdomain
php
cache
AJAX
html
301 redirect
htaccess
regex
javascript
thickbox
client-side
flash
print design
action script
car
bugs
plugin
seo
Recently Added
- HTML [3 items]
- SVN (Subversion) [3 items]
- jQuery [10 items]
- PHP [4 items]
Most Popular
- jQuery [10 items]
- PHP [4 items]
- SVN (Subversion) [3 items]
- HTML [3 items]
Member Options
01
Feb
Created by: robilim - Date Added: 1st February 2010 - 0 Responses
I needed to disable the enter key on a particular form field and was able to find this solution.
$('input#form_id').keypress(function (event){ return event.keyCode == 13;});Note that this is a simplified version of what I did, but basically it returns false when the enterkey (keyCode 13) is pressed.

