imported>카페인러브 문서 내용을 "__FORCETOC__ __NEWSECTIONLINK__ == New tab ? == 분류:연습장"으로 바꿈 |
imported>카페인러브 |
||
| 1번째 줄: | 1번째 줄: | ||
__FORCETOC__ __NEWSECTIONLINK__ | __FORCETOC__ __NEWSECTIONLINK__ | ||
== | == textarea 자동 조절 스크립 == | ||
<pre> | |||
$(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); | |||
}; | |||
}); | |||
}); | |||
</pre> | |||
[[분류:연습장]] | [[분류:연습장]] | ||
2013년 8월 15일 (목) 10:40 판
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);
};
});
});