Posts: 81
Location: Cape Coral, Florida, United States
|
scripting this would not be difficult either...
Code:
<input type="text" name="T1" size="4" onkeyup="if (this.value.length > 5) { alert('Character limit has been reached!'); this.value = this.value.substr(0,5); }">
This would probably be more helpful to the user. This way they would know why they cannot type any more characters 
__________________
Please login or register to view this content. Registration is FREE
FREE PHP scripts for your website!
|