textarea 자동 조절 스크립
$(document).ready(function($) {
$("textarea").keyup(function(e) {
while($(this).outerHeight() < this.scrollHeight + parseFloat($(this).css("borderTopWidth")) + parseFloat($(this).css("borderBottomWidth"))) {
$(this).css('overflow', 'hidden');
$(this).height($(this).height()+1);
};
});
});