I have a form with a text area and hitting the enter key submits my form. How can I make it to add a new line character instead of a form submit.
$('textarea').keypress(function(event) { if (event.which == 13) { event.stopPropagation(); } });
JSFiddle Demo