SAE15_2022/assets/js/contact.js

8 lines
280 B
JavaScript
Raw Normal View History

2023-01-17 22:21:28 +01:00
textarea = document.getElementById('message');
textarea.setAttribute('style', 'height:' + (textarea.scrollHeight) + 'px;overflow-y:hidden;');
textarea.addEventListener("input", function () {
this.style.height = 'auto';
this.style.height = (this.scrollHeight) + 'px';
});