“textarea altura se encaixa no conteúdo” Respostas de código

Corrija o tamanho da textarea

  resize: none;
Agreeable Alpaca

textarea altura se encaixa no conteúdo

const textarea = document.getElementById("txt");

textarea.addEventListener("input", function (e) {
  this.style.height = "auto";
  this.style.height = this.scrollHeight + "px";
});
Adventurous Addax

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 “textarea altura se encaixa no conteúdo”

Perguntas semelhantes a “textarea altura se encaixa no conteúdo”

Mais respostas relacionadas para “textarea altura se encaixa no conteúdo” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código