Created
November 27, 2011 15:23
-
-
Save danil/1397689 to your computer and use it in GitHub Desktop.
NobleCount example
This file contains 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
$('input.with-maxlength').each(function() { | |
var counterId = "id_" + Math.random().toString().replace(".",""); | |
$(this).after('<div><span id="' + counterId + '" /> characters remaining</div>'); | |
$(this).NobleCount("#" + counterId, { | |
max_chars: 25, | |
on_negative: 'go_red', | |
on_positive: 'go_green', | |
block_negative: true | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment