Redimensionar caja de texto HTML en funcion del tamaño del texto
Si tenemos un textarea (o varios) podemos hacer que se adapte al contenido del texto para evitar barras de scroll con el siguiente codigo:
$('body').on( ' blur change keyup keydown paste cut', 'textarea', function (){ $(this).height(0).height(this.scrollHeight); }).find( 'textarea' ).change();