Quantcast
Channel: How to auto-size a textarea in height? - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by user16590017 for How to auto-size a textarea in height?

$
0
0

Try this and enjoy:

var textarea = document.getElementById("YourTextArea");var limit = 50; //height limittextarea.oninput = function() {  textarea.style.height = "";  textarea.style.height = Math.min(textarea.scrollHeight, limit) +"px";};
textarea {    width: 99%;}
<textarea id="YourTextArea"></textarea>

Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>