Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created August 1, 2019 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/6d179de92b6b0cf328aaee326321a1b2 to your computer and use it in GitHub Desktop.
Save codingwithsara/6d179de92b6b0cf328aaee326321a1b2 to your computer and use it in GitHub Desktop.
jQuery Text Counter
<script>
$(function(){
$('#countUp').keyup(function(){
$('#count1').text($(this).val().length);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment