“hacer textura altura automática” Código de respuesta

Arreglar el tamaño de la textura

  resize: none;
Agreeable Alpaca

hacer textura altura automática

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

HTML Textarea Auto Altura a la cantidad 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

Respuestas similares a “hacer textura altura automática”

Preguntas similares a “hacer textura altura automática”

Más respuestas relacionadas con “hacer textura altura automática” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código