Skip to content

Instantly share code, notes, and snippets.

@Bewitchedyegor
Created November 9, 2017 10:08
Show Gist options
  • Save Bewitchedyegor/111ff4f37acd50b321d0aeb17a154620 to your computer and use it in GitHub Desktop.
Save Bewitchedyegor/111ff4f37acd50b321d0aeb17a154620 to your computer and use it in GitHub Desktop.
Character count
$('textarea').on('input', function () {
$(".js-countChar").fadeIn();
});
$('textarea').on('input', updateCount);
function updateCount() {
var cs = [150 - $(this).val().length];
$('#characters').text(cs);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment