auto height text area


jika kita ingin membuat text area untuk otomatis scroll kebawah jika user memencet enter, tips nya adalah sebagai berikut


textarea {

resize: none;
overflow: hidden;
}

<textarea  onKeyUp='textCounter(this)' wrap='physical' rows='1' cols='60'></textarea>

<script>

function textCounter(f)
{
f.style.height = "1px";
f.style.height = (25+f.scrollHeight)+"px";
}

</script>

semoga berguna 🙂

referensi :

tinggalkan pesan

Isikan data di bawah atau klik salah satu ikon untuk log in:

Logo WordPress.com

You are commenting using your WordPress.com account. Logout /  Ubah )

Gambar Twitter

You are commenting using your Twitter account. Logout /  Ubah )

Foto Facebook

You are commenting using your Facebook account. Logout /  Ubah )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d blogger menyukai ini: