jquery-autogrow
jquery-autogrow copied to clipboard
Chrys Bader's Auto Growing Textareas: This plugin makes it easy to have auto-growing textareas. Meaning, if you have a textarea, as the user types it will expand vertically to accommodate the size of...
Hi I made some changes to jquery-autogrow some time ago, I don't know why I didn't open a Pull request back then... anyway, here it is. The changes mainly are...
I was receiving this error: **Uncaught TypeError: Cannot read property 'msie' of undefined** To fix the issue I checked to make sure jQuery.browser was defined before checking jQuery.browser.msie. (Sorry my...
references #8
I'm using the plugin in combination with the jquery jeditable plugin, and it throws an error "Uncaught TypeError: Cannot read property 'msie' of undefined" in the line "if (jQuery.browser.msie)".
Sometimes you don't want that extra line at the bottom. Add an option to disable it.
For me line-height wasn't being calculated properly in IE when I didn't specify css line-height for a textarea, so I put the following in to work around it in the...
How do you implement this is not available
We find that the initial size of the text area is completely collapsed to a small value in Google Chrome.
add on line 119: this.textarea.css('height', this.max_height+"px"); so the textare will be blown up the the proper size.