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.
This worked for me
$(document).keypress(function(e) { if(e.which == 13) { if(document.activeElement.tagName != "TEXTAREA") { e.preventDefault(); }; } })