How do I auto-resize the input type="text" field with jQuery? I want it to be like 100px wide at the start, then make it auto-widening as user inputs text... is that possible?
|
Here's a plugin that'll do what you're after: See a demo here: http://jsbin.com/ahaxe The plugin:
EDIT: Found on: http://stackoverflow.com/questions/931207/is-there-a-jquery-autogrow-plugin-for-text-fields |
|||||||||
|
|
I don't think there is a perfect solution to that problem because you cannot detect the actual width of the text entered to the input element. It all depends of the font you are using, zoom settings in browser etc. However if you can choose a font where you can actually calculate the number of pixels that text have (this is the hardest part but I guess you can try to estimate it somehow). You can use this to change the width of your input field.
|
|||
|
|
|
Hello I dont know if you are still looking but i came across this when i was looking for a script to do the same thing. So hope this helps anyone who is trying to do this, or something similar.
The logic to this code is to put the content onto the page in a span and then gets the width of this content and removes it. The problem i did have was with it was that i had to get it to run on both keydown and keyup for it to work successfully. Hope this helps, Might not as i have only been doing jquery for a short amount of time. Thanks George |
|||||||
|
|
I used seize's answer, but made these changes:
|
|||
|
|
|
See this jQuery plugin:
I just tested it out with textareas and it works! Supports auto-growing of textareas, input[type=text] and input[type=password]. UPD. Looks like the original author removed the repo from github. The plugin hasn't been updated in a long while and turned out to be quite buggy. I can only suggest you to find a better solution. I made a pull request to this plugin sometime ago so I have a copy of it in my github account, use it only in case you want to improve it, it's not bulletproof! Also, I found that ExtJS framework has autosize implementation for text fields, see the grow config property. While it's not that easy to carve this little piece of logic out of the framework, it can give you some good ideas on the approach. |
|||||
|
|
|
By default, input width is controlled by the size parameter, which for Since this is measured in characters and not pixels, the actual pixel size is controlled by the (fixed-width) font in use. |
|||
|
|
I was just thinking about the same thing. Textbox should resize it self as user is writing text into it. I never used it, but I have an idea how to do it. Something like this:
|
|||
|
|