Project-new-web/js/auto_height.js
2019-04-19 19:33:28 +02:00

5 lines
122 B
JavaScript

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