Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Last active June 7, 2022 03:10
Show Gist options
  • Save tararoutray/198163c363cffdaeaf5076640a41ec0c to your computer and use it in GitHub Desktop.
Save tararoutray/198163c363cffdaeaf5076640a41ec0c to your computer and use it in GitHub Desktop.
<div>
<h1>Character Counter for Text Area Element Using JavaScript</h1>
<section id="character-counter-container">
<form>
<label>Message</label>
<textarea name="message" id="message" class="textarea" rows="10" placeholder="Write a message.." maxlength="300"></textarea>
<div id="character-counter">
<span id="typed-characters">0</span>
<span>/</span>
<span id="maximum-characters">300</span>
</div>
<button class="button">Send Message</button>
</form>
</section>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment