[jQuery] textarea高さ自動調節

<textarea>の高さを入力に応じて自動的に伸縮するには、jQueryのこれがいちばんお手軽。

$('textarea').attr('rows', 1).on('input', function() {
    $(this).height(0).innerHeight(this.scrollHeight);
});