Skip to content

Instantly share code, notes, and snippets.

@arodu
Created June 4, 2018 14:05
Show Gist options
  • Select an option

  • Save arodu/ca02552845c495f8a5d3a4933cf3e677 to your computer and use it in GitHub Desktop.

Select an option

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