Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a default behavior, the textarea "press" enter will become new line, but I don't want to having a new line, I want the user press "shift+enter", instead. How can I do so? or... ...can I return the textarea enter event before it actually fire to the text area?? Thank you.

share|improve this question

1 Answer

up vote 23 down vote accepted

See this example on jsFiddle

$("textarea").keydown(function(e){
    // Enter was pressed without shift key
    if (e.keyCode == 13 && !e.shiftKey)
    {
        // prevent default behavior
        e.preventDefault();
    }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.