“Row Auto Textarea” Ответ

Row Auto Textarea

function auto_grow(element) {
    element.style.height = "5px";
    element.style.height = (element.scrollHeight)+"px";
}
Busy Buffalo

Row Auto Textarea

<textarea oninput="auto_grow(this)"></textarea>
 Run code snippet
Busy Buffalo

Row Auto Textarea

textarea {
    resize: none;
    overflow: hidden;
    min-height: 50px;
    max-height: 100px;
}
Busy Buffalo

Ответы похожие на “Row Auto Textarea”

Вопросы похожие на “Row Auto Textarea”

Больше похожих ответов на “Row Auto Textarea” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования