Skip to content

Instantly share code, notes, and snippets.

@xbill82
Last active August 29, 2015 13:56
Show Gist options
  • Save xbill82/9163045 to your computer and use it in GitHub Desktop.
Save xbill82/9163045 to your computer and use it in GitHub Desktop.
JS Text-field character limiter (jQuery plugin)
(function($) {
$.fn.extend( {
limiter: function(limit, elem) {
$(this).on("keyup focus", function() {
setCount(this, elem);
});
function setCount(src, elem) {
var chars = src.value.length;
if (chars > limit) {
src.value = src.value.substr(0, limit);
chars = limit;
}
elem.html( limit - chars );
}
setCount($(this)[0], elem);
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment