Answers for "dynamically increase textarea height"

CSS
2

make textarea auto height

function autoResize() {
	console.log('resizing');
	textInput.style.height = (textInput.scrollHeight) + 'px';
}
Posted by: Guest on September-05-2021

Code answers related to "dynamically increase textarea height"

Browse Popular Code Answers by Language