Skip to content

Instantly share code, notes, and snippets.

@danil
Created November 27, 2011 15:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save danil/1397689 to your computer and use it in GitHub Desktop.
NobleCount example
$('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