Input Group Counter
Show a live character count in an input-group addon and clear the field.
0 / 12
Important JavaScript
input.addEventListener("input", function () {
count.textContent = input.value.length + " / 12";
});