https://github.com/janjarfalk/jquery-elastic
$(document).ready(function(){
// 読み込み時にリサイズ
$('textarea#my_text_area').elastic();
// クリック時にリサイズ
$('textarea#text_name').bind("click", function(){
$('textarea#text_name').elastic();
});
});
https://github.com/jackmoore/autosize
jQueryを使用したくない場合はこちら
// from a NodeList
autosize(document.querySelectorAll('textarea'));
// from a single Node
autosize(document.querySelector('textarea'));
// from a jQuery collection
autosize($('textarea'));
http://javascriptly.com/2008/09/quick-useful-jquery-plugins/ ダウンロード: http://github.com/jaz303/jquery-grab-bag/blob/master/javascripts/jquery.autogrow-textarea.js
$(document).ready(function(){
$('textarea#mytextarea').autogrow();
});