(즐거웅코드) 제이쿼리 textarea 높이 자동으로 조절하기
[즐거'웅'코드] 목차 jQuery 예제 소스 구현 예시 jQuery 1 2 3 4 5 6 $('textarea').on('keyup', function (e) { $(this).css('height', 'auto'); $(this).height(this.scrollHeight - 15); }); 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 textarea { resize: none; overflow-y: hidden; height: auto; padding: 10px; } $('textarea').on('keyup', function (e) { $(this).css('height', 'auto'); $(this).height(this.scrollHei..
2021. 3. 7. 13:35