Click here to Skip to main content
Click here to Skip to main content

Dynamically Growing Textbox

By , 11 Mar 2013
 

Introduction

This tip is to dynamically change the width of the textbox as you type. This might be useful when you have to display the entire content of the textbox without requiring the user to scroll. In my case, it was checking the answers for a question with text below the user input answer.

Using the Code

<input type="text" 
onkeyup="if(this.scrollWidth > this.clientWidth)this.style.width=this.scrollWidth+'px';"> 

For a one time usage, the if statement in onkeyup event is okay. A better solution is to define a function taking a parameter and call it in the onkeyup event passing this as the parameter.

To grow it in height (in general, for the right control in the right context), assuming it is a multiline textbox, scrollHeight and clientHeight are used.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Anshul R
Student
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 12 Mar 2013
Article Copyright 2013 by Anshul R
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid