Created
January 18, 2013 12:52
-
-
Save dantoncancella/4564370 to your computer and use it in GitHub Desktop.
jQuery 'limit' plugin for textarea
This file contains hidden or 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
(function ($) { | |
$.fn.limit = function (options) { | |
var defaults = { | |
limit : 200, | |
result : false, | |
alertClass : false | |
}, options = $.extend(defaults, options); | |
return this.each(function () { | |
var characters = options.limit; | |
if (options.result != false) { | |
$(options.result).append("Ainda restam <strong>"+characters+"</strong> caracteres"); | |
} | |
$(this).keyup(function () { | |
if ($(this).val().length > characters) { | |
$(this).val($(this).val().substr(0, characters)); | |
} | |
if (options.result != false) { | |
var remaining = characters - $(this).val().length; | |
$(options.result).html("Ainda restam <strong>"+remaining+"</strong> caracteres"); | |
if (remaining <= 10) { | |
$(options.result).addClass(options.alertClass); | |
} else { | |
$(options.result).removeClass(options.alertClass); | |
} | |
} | |
}); | |
}); | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment