I have a survey on a website, and there seems to be some issues with the users hitting enter (I don\'t know why) and accidentally submitting the survey (form) without clicki
A nice simple little jQuery solution:
$("form").bind("keypress", function (e) { if (e.keyCode == 13) { return false; } });