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

Is it possible to create a multi-line text-input field? I need something that works as a textarea (with line-wrap) but without being able to 'return' to the next line. Or should i create a textarea and disable the enter-button?

share|improve this question
1  
you gave the answer in your question... use a textarea. – Peter Oct 6 '09 at 14:22
2  
Why not just use a textarea and then remove then remove the line breaks on the server? Sounds like a frustrating interface, "Why can't I hit enter?!" – rpflo Oct 8 '09 at 3:43

3 Answers

You can't do it without javascript. Check the second demo textarea in this tutorial, it does what you need.

share|improve this answer

Go ahead with the last option, I think it's the better path.

share|improve this answer

Two simple constraints; text boxes can't have line returns & text areas can! You'll have to use a text area and handle "hard" returns either on the client using JS or the server using whatever language you're on. Just remember any client side parsing should be complimented on the server side if data integrity is important.

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.