Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created August 24, 2014 01:04
Show Gist options
  • Save bytefade/c4a6f0a0cb74a81f12e7 to your computer and use it in GitHub Desktop.
Save bytefade/c4a6f0a0cb74a81f12e7 to your computer and use it in GitHub Desktop.
Exemplo contador jquery, limitador de caracteres
$('#descricao').keyup(function () {
var left = 210 - $(this).val().length;
if (left < 0) {
left = 0;
}
$('#counter').text('Caracteres restantes: ' + left);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment