Return to Snippet

Revision: 52790
at November 1, 2011 15:09 by jackkeller


Initial Code
$("form").bind("keypress", function(e) {
	if (e.keyCode == 13) {
       	return false;
	}
});

Initial URL


Initial Description


Initial Title
Prevent Form Submission on Enter

Initial Tags
jquery

Initial Language
JavaScript