Submit is disabled for keypress enter on textarea also I want to go the new line when enter is pressed on textarea. How can I modify below code?
$('textarea').bind('keypress', function(e) {
if ((e.keyCode || e.which) == 13) {
e.preventDefault();
return false;
}
});