“Сделайте автоксацию Textarea” Ответ

Исправить размер Textarea

  resize: none;
Agreeable Alpaca

Сделайте автоксацию Textarea

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

HTML Textarea Auto Height до количества текста

$('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

Ответы похожие на “Сделайте автоксацию Textarea”

Вопросы похожие на “Сделайте автоксацию Textarea”

Больше похожих ответов на “Сделайте автоксацию Textarea” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования