Created
March 16, 2018 10:02
-
-
Save 98o718/b6a8096d24b0ef84a52c572b6b99d88e to your computer and use it in GitHub Desktop.
Autoheight textarea with "textarea" class
This file contains hidden or 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
| $('.textarea').each(function () { | |
| this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;'); | |
| }).on('input', function () { | |
| this.style.height = 'auto'; | |
| this.style.height = (this.scrollHeight) + 'px'; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment