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
This is the perfect way, You will be not redirected from your page
$('form input').keydown(function (e) { if (e.keyCode == 13) { e.preventDefault(); return false; } });