“HTML Textarea Auto Altura a la cantidad de texto” Código de respuesta

HTML TextARea altura

<!-- textarea rows attribute -->
<textarea id="txtid" name="txtname" rows="4" cols="50" maxlength="200">
A nice day is a nice day.
Lao Tseu
</textarea>
VasteMonde

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 “HTML Textarea Auto Altura a la cantidad de texto”

Preguntas similares a “HTML Textarea Auto Altura a la cantidad de texto”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código