Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a simple javascript pattern for showing how many characters left you can use in a fixed character text box?

Say you have a text box and you want them only to use 500 characters, twitter and stack-overflow show how many you have left as you type. I presume you can use jquery and a type event to produce a dynamic running count.

Is there an elegant pattern for this in javascript.

share|improve this question
Yes, write and test your code thoroughly. – aziz punjani Feb 24 '12 at 20:23
keith-wood.name/maxlength.html – Kevin B Feb 24 '12 at 20:29

1 Answer

up vote 2 down vote accepted

Yes there is tons of scripts out there. One of them is

<script language="javascript" type="text/javascript">
function limitText(limitField, limitCount, limitNum) {
    if (limitField.value.length > limitNum) {
        limitField.value = limitField.value.substring(0, limitNum);
    } else {
        limitCount.value = limitNum - limitField.value.length;
    }
}
</script>

Script taken from: http://www.mediacollege.com/internet/javascript/form/limit-characters.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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