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

Possible Duplicate:
Autosizing textarea using prototype

How do I change the height of a text area based on the number of lines of text that the user puts into it?

For the example below if the user changed the text in the textarea to more than one line of text then the textarea would put a scroll bar on itself rather than changing its height to fit the number of lines.

<textarea>
This is the default text that will be displayed in the browser. When you change this text and add more lines to it the browser will not change the height of the textarea that this text is in rather it will add a scroll bar, which is not what I want.
<textarea>
share|improve this question
@FelixKling Only if we assume OP is using prototype, which he never mentioned. – Chad Sep 24 '12 at 15:53

marked as duplicate by Joachim Sauer, Martijn Pieters, Ryan, Andrew, Joe Sep 24 '12 at 19:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Seriously? This is too easy:

<textarea onkeyup="autoSize(this);"></textarea>

function autoSize(ele)
{
   ele.style.height = 'auto';
   var newHeight = (ele.scrollHeight > 32 ? ele.scrollHeight : 32);
   ele.style.height = newHeight.toString() + 'px';
}

Adjusting "32" to match line-height is left as an exercise.

share|improve this answer
It's not working: jsfiddle.net/MYrG2 – Web_Designer Apr 14 '11 at 15:35
Problem w/ JSFiddle, not the script. From Chrome: "Unsafe JavaScript attempt to access frame with URL jsfiddle.net/MYrG2 from frame with URL fiddle.jshell.net/MYrG2/show. Domains, protocols and ports must match." Cross-site scripting error, how quaint. – JURU Apr 15 '11 at 19:36
1  
Oops, a small addition: to fix problems with this on Webkit, "overflow-y: hidden" should be added to the textarea styling. – JURU Apr 18 '11 at 13:31

You'll have to figure out how many character are displayed in one line of the text area. And find how many lines will be there in the text area thus. Change the height accordigly.

    var charsperline=10;// figure out how much this is
    var heightofsingleline=5; // And this too
    var txtArea=document.getElementById("txtaareaID");
    var noChars=txtArea.value.length;
    var nolines=noChars/charsperline;
    txtArea.setAttribute("height",nolines*heightofsingleline);
share|improve this answer
But, how do you figure out how many characters there are per line? Or for your code how do you get the variable charsperline? – Web_Designer Dec 23 '10 at 22:11
just count the number of characters there in one line in text are. – TheSuperTramp Dec 24 '10 at 8:57
Unless you are using a mono-space font then the number of characters per line will vary. I would like to have something like Facebook has for it's textarea that you use to post something in. Their textarea resizes vertically line by line. – Web_Designer Feb 26 '11 at 4:05

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