I have a found various plugins for autogrowing a textarea, but not input text fields. Does anybody know if any exist?
feedback
|
|
Here's a plugin that'll do what you're after: EDIT: I've fixed the plugin as per Mathias' comment. :) See a demo here: http://jsbin.com/ahaxe The plugin:
| |||||||||||||||||||||
feedback
|
|
Good plugin, thank you! I changed two things that seemed to work better in my project though.
Hope this helps. | |||||||
feedback
|
|
just wanted to share a small improvement to James's great plugin. Add this code to the CSS declaration for the tester element to account for text-indent:
Without it, in some situations the tester element may inadvertently inherit the text-indent from elsewhere, thus throwing off the size of the input. Like JP, I also wanted to resize the input to the correct size from the beginning, which I did just slightly differently, by chaining "trigger('keyup')" to the autoGrowInput method call, e.g.:
As a side note, I signed up to this site purely to comment on James's solution and I'm a bit annoyed to find that I can't because I don't have enough reputation points to start with. Sorry if I've missed something, but that seems to mean that I have to post this is a comment on the main question rather than more appropriately on James's solution. | ||||
|
feedback
|
|
I'd also replaced
to
in order to get the field resized right after it was re-rendered by browser. It would rid the field from some chattering. | |||
|
feedback
|
|
If you want the textbox to grow when the string within it extends past its width, maybe something like this would work for you... It detects the size attribute of the textbox. If the length of the string goes over that attribute, it extends the textbox to the length of the string on keyup. In the below script, "#test" is a textbox ID.
| |||
feedback
|
|
Funny enough in IE overflow: visible is taken very seriously. You can achieve this effect by applying overflow: visible on your input elements. Not sure if any similar CSS tricks exist for modern browsers. | |||
|
feedback
|
|
Thanks for the plugin. I modified it a little bit in my project. Instead of "tester" tag, I use "pre" tag. So I can skip escaping the content. | |||
|
feedback
|
|
Is this autogrow input plugin licenced under MIT? | |||
|
feedback
|
protected by Community♦ Jan 7 at 2:06
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.