vote up 2 vote down star
2

I would like to have some functionality by which if i write

<textarea maxlength="50"></textarea>
<textarea maxlength="150"></textarea>
<textarea maxlength="250"></textarea>

it will automatically impose the maxlength on the textArea. If possible please donot provide the solution in JQuery.

Note: This can be done if i do something like this:

<textarea onkeypress="return imposeMaxLength(event, this, 110);" rows="4" cols="50">


function imposeMaxLength(Event, Object, MaxLen)
{
        return (Object.value.length <= MaxLen)||(Event.keyCode == 8 ||Event.keyCode==46||(Event.keyCode>=35&&Event.keyCode<=40))
}

copied from another thread

But the point is I don't want to write onKeyPress and onKeyUp every time i declare a textArea.

flag

1 Answer

vote up 4 vote down check
window.onload = function() {
  var txts = document.getElementsByTagName('TEXTAREA')

  for(var i = 0, l = txts.length; i < l; i++) {
    if(/^[0-9]+$/.test(txts[i].getAttribute("maxlength"))) {
      txts[i].onkeyup = function() {
        var len = parseInt(this.getAttribute("maxlength"), 10);

        if(this.value.length > len) {
          alert('Maximum length exceeded: ' + len);
          this.value = this.value.substr(0, len);
          return false;
        }
      }
    }
  }
}
link|flag
Josh it seems it will work but will u please explain what this thing will do --- if(/^[0-9]+$/.test(txts[i].getAttribute("maxlength"))) { --- – Rakesh Juyal Jul 14 at 14:05
That makes sure the maxlength attribute is numeric before assigning the event handler. – Josh Stodola Jul 14 at 14:34
It also ensures that the maxlength attribute actually exists. – Josh Stodola Jul 14 at 14:34

Your Answer

Get an OpenID
or

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