Hi, i have a form on my website, and I would like to have a text box next to another text box that displays how many letters the user can type into the box eg:
<td><input type="text" name="description" maxlength="30" /></td>
<td><input type="text" class="counter" value="30" disabled="true" /></td>
This is fine, but I would like the box with the numbers in it to count down as the user types in the first box, and if they delete something i would like the number to go back up again too.
If anyone could help me that'd be great thanks.