Blame | Last modification | View Log | Download | RSS feed
## SummaryAutosize is a small, stand-alone script to automatically adjust textarea height to fit text.#### DemoFull documentation and a demo can be found at [jacklmoore.com/autosize](http://jacklmoore.com/autosize)#### Install via NPM```bashnpm install autosize```#### Install via Bower```bashbower install autosize```#### Browser compatibilityChrome | Firefox | IE | Safari | iOS Safari | Android | Opera Mini | Windows Phone IE------ | --------|----|--------|------------|---------|------------|------------------yes | yes | 9 | yes | yes | 4 | ? | 8.1#### UsageThe autosize function accepts a single textarea element, or an array or array-like object (such as a NodeList or jQuery collection) of textarea elements.```javascript// from a NodeListautosize(document.querySelectorAll('textarea'));// from a single Nodeautosize(document.querySelector('textarea'));// from a jQuery collectionautosize($('textarea'));```Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php)