hilton meyer

Character Counter

I'm really enjoying Vanilla JS Academy because the projects are short and sweet but they all seem to have some real world application. So we are learning some important methods along the way but then we have to go off and apply them in an interesting way. The community around this course is also so great so I can only take my hat off to Chris Ferdinandi. Today we had to create a character counter like you might see on some sites under a text box. Possibly applications is indicating that there is a maximum number of characters in a textarea.

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Character Count</title>
</head>

<body>
    <h2>Character Count</h2>

    <label for="text">Enter your text below.</label>
    <textarea id="text"></textarea>

    <p>You've written <strong><span id="character-count">0</span> characters</strong>.</p>

    <script src="script.js"></script>
</body>

</html>

This is some very basic html and the javascript was also pretty simple to find a solution for. The event was my only catch. I initially was using keyup but after posting the solution on the Slack channel I saw others using input as their event. After some checking I found that the mouse copy paste did not trigger the event from happening. So I made this change and I was able to set the counter as I was typing in or doing some form of copy paste.

const characterCount = document.querySelector('#character-count');

window.addEventListener(
    "keyup",
    event => {event.target.matches('#text') ? characterCount.textContent = event.target.textLength : 0;},
    false,
);

characterCount.textContent = document.querySelector('#text').textLength;  

See it in action