Created
January 31, 2017 08:22
-
-
Save antonreshetov/ae540bee3943c577d41ef6fb29510f3b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function textAreaResize() { | |
var textArea = document.getElementById('text'); | |
textArea.addEventListener('input', resize); | |
function resize() { | |
textArea.style.height = 'auto'; | |
textArea.style.height = text.scrollHeight + 2 + 'px'; | |
} | |
} | |
textAreaResize(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment