vote up 0 vote down star

Anyone have code to limit the characters in a text field and display the character count?

I need something like twitter status input and I can't find anything online. If there isn't anything out there, I'll probably make a jQuery plugin or at least open source this thing.

Thanks!

flag

79% accept rate

2 Answers

vote up 2 vote down check

Take a look at this page:

Interactive character limit for textarea using Jquery

 <script language="javascript">
 function limitChars(textid, limit, infodiv)
 {
     var text = $('#'+textid).val(); 
     var textlength = text.length;
     if(textlength > limit)
     {
    	 $('#' + infodiv).html('You cannot write more then '+limit+' characters!');
    	  $('#'+textid).val(text.substr(0,limit));
    	  return false;
     }
     else
     {
      $('#' + infodiv).html('You have '+ (limit - textlength) +' characters left.');
      return true;
     }
 }
 </script>

Then bind the function to the keyup event of your textarea. Do this in jQuery’s ready event of document like this:

$(function(){
    $('#comment').keyup(function()
    { 
    	limitChars('comment', 20, 'charlimitinfo');	
    })
});
link|flag
I ended up using this one which looks very close to twitter: javascriptkit.com/script/script2/… – Tony Oct 19 at 13:21
vote up 1 vote down

Check Here and here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.