professional-javascript-11-TextAreaMaxLengthExample.htm / htm
<html> <head> <title>TextArea Max Length Example</title> <script type="text/javascript" src="textutil.js"></script> </head> <body> <p>Try typing in the textbox. You can only type 25 characters.</p> <form method="post" action="javascript:alert('Submitted')"> <textarea rows="10" cols="25" maxlength="25" onkeypress="return TextUtil.isNotMax(this)"></textarea> <input type="submit" value="Submit Form" /> </form> </body> </html>
(C) Æliens 20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.