Show sourcecode
The following files exists in this folder. Click to view.
charcount.js
8 lines ASCII Windows (CRLF)
document.querySelectorAll('.input-wrapper input').forEach(input => {
const charCount = input.parentElement.querySelector('.char-count');
const maxLength = input.getAttribute('maxlength');
charCount.textContent = maxLength - input.value.length;
input.addEventListener('input', function () {
charCount.textContent = maxLength - this.value.length;
});
});