Skip to content

Instantly share code, notes, and snippets.

@98o718
Created March 16, 2018 10:02
Show Gist options
  • Select an option

  • Save 98o718/b6a8096d24b0ef84a52c572b6b99d88e to your computer and use it in GitHub Desktop.

Select an option

Save 98o718/b6a8096d24b0ef84a52c572b6b99d88e to your computer and use it in GitHub Desktop.
Autoheight textarea with "textarea" class
$('.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