Skip to content

Instantly share code, notes, and snippets.

@evadi
evadi / jquery-characterLimit.0.1.0.js
Created March 22, 2013 23:58
jQuery plugin for character limits in text areas
(function ($) {
$.fn.characterLimit = function (options) {
var settings = $.extend({
'maxCharacters': 100
}, options);
return this.each(function () {
var $this = $(this);