Skip to content

Instantly share code, notes, and snippets.

@Dexdot
Last active April 8, 2018 11:25
Show Gist options
  • Select an option

  • Save Dexdot/719b62aa876f0fa7e822ced0ff578a08 to your computer and use it in GitHub Desktop.

Select an option

Save Dexdot/719b62aa876f0fa7e822ced0ff578a08 to your computer and use it in GitHub Desktop.
Textarea autosize (height content)
$('.container').on('change keyup keydown paste cut', 'textarea', function() {
$(this).height(0).height(this.scrollHeight);
}).find('textarea').change();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment