Char counter for notice update text area. http://laconi.ca/PITS/00094

Added a util.js and this uses JQuery.

darcs-hash:20080624174613-982e4-1a6f11365957e6f4ed70b87ce64fb9938441f01f.gz
This commit is contained in:
matthew.gregg
2008-06-24 13:46:13 -04:00
parent 5593d4a50b
commit 240989994d
3 changed files with 38 additions and 2 deletions

21
js/util.js Normal file
View File

@@ -0,0 +1,21 @@
$(document).ready(function(){
// count character on keyup
function counter(){
var maxLength = 140;
var currentLength = $("#status_textarea").val().length;
var remaining = 140 - currentLength;
$("#counter").text(remaining);
if(remaining <= 0) {
$("#counter").attr("class", "toomuch");
} else {
$("#counter").attr("class", "");
}
}
if ($("#status_textarea").length) {
$("#status_textarea").bind("keyup", counter);
}
});