Answers for "Textarea auto height based on content"

5

fix textarea size

resize: none;
Posted by: Guest on May-16-2020
1

make textarea auto height

function autoResize() {
	console.log('resizing');
	textInput.style.height = (textInput.scrollHeight) + 'px';
}
Posted by: Guest on September-05-2021
1

textarea scale to content

<textarea rows="10" style="font-size: 2vw; width:100%;"></textarea>
Posted by: Guest on July-04-2020
0

html textarea auto height to amount of text

$('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';
});
Posted by: Guest on June-03-2020

Code answers related to "Textarea auto height based on content"

Browse Popular Code Answers by Language