Created
June 4, 2018 14:05
-
-
Save arodu/ca02552845c495f8a5d3a4933cf3e677 to your computer and use it in GitHub Desktop.
jquery autosize textarea
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
| var text = $('#autosize'); | |
| text.on('change drop keydown cut paste', function() { | |
| text.height('auto'); | |
| text.height(text.prop('scrollHeight')); | |
| }); |
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 id="autosize"></textarea> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment