How can I achieve auto expand textarea through jQuery?
+1
A:
I've used the Textarea Expander jQuery plugin before with good results.
richsage
2010-06-01 08:28:17
this is all about textarea but what about textbox.is this plugin also work for textbox?
picnic4u
2010-06-01 10:24:06
A text box (input text element I presume) isn't multiline. Use a textarea but style it appropriately - rows, columns etc, and then use the auto-grow plugin as above.
richsage
2010-06-01 13:43:24
+3
A:
I have tried lots and this one is great. You can try by pressing and hold enter key in textarea. Compare the effect with the other auto expanding textarea plugin....
edit based on comment
$(function() {
$('#txtMeetingAgenda').autogrow();
});
note: you should include the needed js files...
Reigel
2010-06-01 08:31:40