Last active
June 7, 2022 03:10
-
-
Save tararoutray/198163c363cffdaeaf5076640a41ec0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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