|
There is no html attribute for that, you'll have to use javascript to do it.
You could have a function that would be called on each keypress and then deleting the character pressed if the maximum length was reached.
|
|
Expert:
|
dustPuppy
|
|
Date:
|
Sep 16, 2006
|
|
Time:
|
19:55
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Ok, thanks.
Something like this?:
<textarea onkeyup="if (this.value.length > 150) this.value = this.value.substring(0, 150)">
Jakob
|
|
Expert:
|
jgivoni
|
|
Date:
|
Sep 16, 2006
|
|
Time:
|
20:23
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
yes, I believe that should work
|
|
Expert:
|
dustPuppy
|
|
Date:
|
Sep 16, 2006
|
|
Time:
|
20:29
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
It works, though you can cheat it by copy/pasting some content to the field.
(Of course you'll have to use the right-click menu and NOT the CTRL + V shortcut...)
Add the onchange attribute with the same functionality to avoid this exploit.
|
|
Expert:
|
jgivoni
|
|
Date:
|
Sep 16, 2006
|
|
Time:
|
20:33
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
| dustPuppy: |
10 |
| jgivoni: |
15 |
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|