“Faça a altura automática da textarea” Respostas de código

Corrija o tamanho da textarea

  resize: none;
Agreeable Alpaca

Faça a altura automática da textarea

function autoResize() {
	console.log('resizing');
	textInput.style.height = (textInput.scrollHeight) + 'px';
}
MunchDuster

HTML Textarea Automotion Alleat para quantidade de texto

$('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';
});
Dangerous Dove

Respostas semelhantes a “Faça a altura automática da textarea”

Perguntas semelhantes a “Faça a altura automática da textarea”

Mais respostas relacionadas para “Faça a altura automática da textarea” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código