Automatically adjust textarea height
$npm install textarea-auto-height
<textarea id="content" />
import TextAreaAutoHeight from 'textarea-auto-height';
let autoHeight = new TextAreaAutoHeight( jQuery( '#content' ) );
autoHeight.reset();
let autoHeight = new TextAreaAutoHeight( jQuery( '#content' ), jQuery( '#parent' ), 50 );
let autoHeight = new TextAreaAutoHeight( jQuery( '#content' ), jQuery( '#parent' ), 50, 1.5 /*lineHeight*/ );
//jQuery( '#content' ).css( 'line-height' )
let autoHeight = new TextAreaAutoHeight( jQuery( '#content' ), jQuery( '#parent' ), 50, 1.5, 460 /*maxHeight*/ );
© 2015 ingpdw. MIT License