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 resize a text input box as text is typed? I've searched the web and haven't found anything.

share|improve this question
1  
Is this OK? jsfiddle.net/gqKYJ – Šime Vidas Jul 22 '11 at 0:26

4 Answers

I just made one for you, try it here: http://jsfiddle.net/FNMSP/2/

function autoResize(e){
    var ele=e.target;                          //get the text field
    var t=ele.scrollTop;                       //use scroll top to determine if
    ele.scrollTop=0                              space is enough
    if(t>0){                                       //If it needs more space...
        /*ele.style.overflowY="hidden";           ***Don't use this line***/
        ele.style.height=(ele.offsetHeight+t+t)+"px";  //Then add space for it!
    }          
}

You can do this to the textarea,

<textarea onkeydown="autoResize(event)">Auto Resize!</textarea>

Or use below to attach the function to every <textarea>:

var ele=document.getElementsByTagName("textarea");
for(i=0;i<ele;i++){
    ele[i].addEventListener("keydown",autoResize,false)
}

Feel free to use it.

share|improve this answer
Hmm, doesn't seem to work in FF5, I don't see anything resizing – mrk Jul 22 '11 at 0:22
Remove that overflow-y:hidden in the CSS section and it will work. – Derek 朕會功夫 Jul 22 '11 at 0:41

Pretty simple but weird implementation :)

<script>
function enlarge(ele)
{
   ele.size += 10;
}
</script>

<form>
<input onkeypress="enlarge(this)" size="10"/>
</form>
share|improve this answer
1  
@mrk... why do you resize on every keystroke? – Hristo Jul 21 '11 at 23:42
You wrote "resize a text input box as text is typed" - so, onkeypress is invoked 'as text is typed'. Obviously you'd want to decide when or when not to actually resize and by how much. If you just want to resize when the user is entering data you could have onfocus and onblur handlers enlarge and reduce the size, respectively. – mrk Jul 21 '11 at 23:45
gotcha. cool :) thanks for the explanation – Hristo Jul 21 '11 at 23:47
<SCRIPT LANGUAGE="JavaScript" type="text/javascript">

 function call_me(max_length) {
 if((document.form1.mybox.value == null ) ||> (document.form1.mybox.value == "" )) document.form1.mybox.size = size;
if((document.form1.mybox.value.length >=
size)&&(document.form1.mybox.value.length <= max_length))
document.form1.mybox.size = document.form1.mybox.value.length + 1;
else document.form1.mybox.size = size; } </script>

LastName: <input type="text" style="font-family: Terminal"
name="mybox" maxlength="30" size="10"
onFocus="setInterval('call_me(document.form1.mybox.maxLength)', 1)">
</script> 

<SCRIPT LANGUAGE="JavaScript">

var size = document.form1.mybox.size; 

</script>
share|improve this answer

If you can use a jQuery plugin, check this out...

http://james.padolsey.com/javascript/jquery-plugin-autoresize/

I hope this helps.
Hristo

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.