How can I get a textarea to initially have only 1 row, but then when the text reaches the end of the row to add another row, and keep doing this up until a maximum of 5 rows?
|
Something like this:
edit Slight improvements to handle newlines:
|
|||||||||||
|
|
This A List Part article gives an in-depth, step-by-step description on how to best implement this functionality. |
|||
|
|
|
I took the idea from Jake Feasel's answer and it not only works for expanding but also for contracting the textarea in case there is lesser content. HTML
It also displays the ideal number of rows required according to the content in a sepatate div CSS
This is required because, once the textarea has been resized using this handler, the code stops working JS
Demo: http://jsfiddle.net/roopunk/xPdaP/3/ Notice that it also takes care of the scroll bar which pops up between keyDown and keyUp. IMO: It is kinda bugging. Note Hope this helps!:) |
||||
|
|
|
Check the Elastic jQuery plugin: http://unwrongest.com/projects/elastic/ You can use the max-height property on your CSS combined with the maxlength of your textarea to limit it to 5 lines. |
|||
|
|
|
download this plugin : http://james.padolsey.com/demos/plugins/jQuery/autoresize.jquery.js
|
|||
|
|