mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
6 lines
179 B
JavaScript
6 lines
179 B
JavaScript
const textElem = document.getElementById('input');
|
|
const countElem = document.getElementById('count');
|
|
|
|
setInterval(() => {
|
|
countElem.innerText = textElem.value.length;
|
|
}, 100);
|