christianesperar 89d7f6df20 Update libraries | 8 лет назад | |
---|---|---|
.. | ||
dist | 8 лет назад | |
example | 8 лет назад | |
src | 8 лет назад | |
.bower.json | 8 лет назад | |
.gitignore | 8 лет назад | |
LICENSE.md | 8 лет назад | |
bower.json | 8 лет назад | |
build.js | 8 лет назад | |
changelog.md | 8 лет назад | |
package.json | 8 лет назад | |
readme.md | 8 лет назад |
Autosize is a small, stand-alone script to automatically adjust textarea height to fit text.
Full documentation and a demo can be found at jacklmoore.com/autosize
npm install autosize
Chrome | Firefox | IE | Safari | iOS Safari | Android | Opera Mini | Windows Phone IE |
---|---|---|---|---|---|---|---|
yes | yes | 9 | yes | yes | 4 | ? | 8.1 |
The autosize function accepts a single textarea element, or an array or array-like object (such as a NodeList or jQuery collection) of textarea elements.
// from a NodeList
autosize(document.querySelectorAll('textarea'));
// from a single Node
autosize(document.querySelector('textarea'));
// from a jQuery collection
autosize($('textarea'));
Released under the MIT License