Here is a small script example, if you need it to be modified let me know. I did it so that the character count is automatic every time they release whatever key they press.
JS:
Code:
function countChars(obj)
{
var counter = document.getElementById(obj.name + '_counter');
counter.innerHTML = obj.value.length;
}
HTML:
Code:
<input type="text" name="line1" onkeyup="countChars(this)"/> Count: <span id="line1_counter"></span><br/>
<input type="text" name="line2" onkeyup="countChars(this)"/> Count: <span id="line2_counter"></span><br/>
<input type="text" name="line3" onkeyup="countChars(this)"/> Count: <span id="line3_counter"></span><br/>
Bookmarks