Skip to content

Instantly share code, notes, and snippets.

@maxp
Created December 1, 2016 03:48
Show Gist options
  • Save maxp/d9d34f608c1eacc36ce0c2abed81b79f to your computer and use it in GitHub Desktop.
Save maxp/d9d34f608c1eacc36ce0c2abed81b79f to your computer and use it in GitHub Desktop.
commentArea.addEventListener('keydown', autosize);
function autosize () {
var el = this;
setTimeout(function () {
el.style.cssText = 'height:auto;';
el.style.cssText = 'height:' + el.scrollHeight + 'px';
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment