How can I make a "remaining characters" countdown like the one on Twitter with jQuery? And also limit the input to a textarea.
|
|
Make a
And then make an update function like so:
And make that function run when the page is loaded and whenever the message is changed:
Visit an example and view the source. jQuery makes things like this very simple. |
|||||||||
|
|
I've used Aaron Russell's simply countable jQuery plugin with success; though, if I were to have written it, I would have designed it a bit differently (automatic counter div creation, using a data-maxlength attribute instead of a plugin option, etc). Simple usage:
Advanced usage:
|
|||||||
|
|
We ended up doing a custom JS solution that operates on any input with class "limited". It uses an HTML5 custom data attribute ("data-maxlength") to specify the length. Of course, this is not nearly as full-featured as the plugin Ryan mentioned. But we needed multiple, dynamically added counters which didn't seem to be supported by the plugin. Hope that helps.
|
|||
|
|
|
Using javascript and the onchange event. See here: http://www.shiningstar.net/articles/articles/javascript/dynamictextareacounter.asp |
|||
|
|
|
It's a suicide to use jQuery, Mootools or similar for such simple task ... Simple javascript function:
The first parameter is id of the input/textarea. The second - id of the div to display characters left. The third is the limit itself. And simple HTML:
|
|||
|
|
|
use jquery save this as jquery.textlimiter.js
usage
|
|||
|
|