Created
August 24, 2014 01:04
-
-
Save bytefade/c4a6f0a0cb74a81f12e7 to your computer and use it in GitHub Desktop.
Exemplo contador jquery, limitador de caracteres
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
$('#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