Skip to content

Instantly share code, notes, and snippets.

@pazguille
Created March 7, 2013 10:26
Show Gist options
  • Save pazguille/5107057 to your computer and use it in GitHub Desktop.
Save pazguille/5107057 to your computer and use it in GitHub Desktop.
Textareas Resizables
textarea{ resize: none; }
<h1>Textareas Resizables</h1>
<textarea id="textarea" cols="20" rows="1"></textarea>
var textarea = document.getElementById('textarea');
textarea.addEventListener('input', function () {
this.style.height = 'auto';
this.style.height = this.scrollHeight + 'px';
});
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"result"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment