Skip to content

Instantly share code, notes, and snippets.

@mrnugget
Created February 11, 2012 21:45
Show Gist options
  • Save mrnugget/1804444 to your computer and use it in GitHub Desktop.
Save mrnugget/1804444 to your computer and use it in GitHub Desktop.
function text_counter(input, target) {
input.keyup(function() {
var left = input.attr("maxlength") - this.value.length;
target.text("You have " + left + " characters left");
});
};
text_counter($("#tag_name"), $("#tag-input-help"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment