Unfortunately HTML doesn't enforce the maxlength attribute for TEXTAREA's.
Add a browser check to restrict the length for textareas, too.
Logged In: YES user_id=1449836 Originator: YES
Check could be done with
<textarea onKeyPress="return ( this.value.length < 50 );"></textarea>
but onchange has also to be checked, in case the user pastes a text into the textarea, then the above check will not fire.
Log in to post a comment.
Logged In: YES
user_id=1449836
Originator: YES
Check could be done with
<textarea onKeyPress="return ( this.value.length < 50 );"></textarea>
but onchange has also to be checked, in case the user pastes a text into the textarea, then the above check will not fire.