반응형
$("textarea").each(function()
{
var offset = this.offsetHeight - this.clientHeight;
var resizeTextarea = function(el)
{
$(el).css('height', 'auto').css('height', el.scrollHeight + offset);
};
$(this).on('keyup input focusin', function() { resizeTextarea(this); });
});
2023.02.20 - [분류 전체보기] - textarea 크기 조절 방지하기 - css
반응형