Users don\'t like the fact that the Enter key submits the page. So I am tasked with preventing the submission and changing the Enter key to a Tab to the next field.
$("input").bind("keydown", function(event) { if (event.which === 13 && this.type !== 'submit') { event.preventDefault(); $(this).next("input").focus(); } });