/ Published in: JavaScript
Expand |
Embed | Plain Text
$("#form").keypress(function(e) { if (e.which == 13) { return false; } });
You need to login to post a comment.
shahways on 01/05/09
javascript forms jquery submit
6 people have marked this snippet as a favorite
LeeRJohnson
bryandease
Hollow
kikuchiyosesa
matylla
czachor
$("#form").keypress(function(e) { if (e.which == 13) { return false; } });
You need to login to post a comment.