display number of characters in textarea box

T

tony wong

i wish to count number of characters in textarea box during typing in and
display it somewhere in html page. so the number will increase during
writing.

is it possible to do it by javascript?

Thanks a lot.

Tony
 
R

Randy Webb

Zoe Brown said the following on 9/11/2005 2:31 PM:
create an event for the onchange value of the textarea, get the value of the
textarea and then count the chars.

Use the onkeyup instead, and after onkeyup you check the character
count. onchange will only fire *after* the textarea has lost focus.
 
M

McKirahan

Randy Webb said:
Zoe Brown said the following on 9/11/2005 2:31 PM:

Use the onkeyup instead, and after onkeyup you check the character
count. onchange will only fire *after* the textarea has lost focus.

<html>
<head>
<title>count.htm</title>
<script type="text/javascript">
function count(that) {
window.status = that.value.length;
}
</script>
</head>
<body>
<form>
<textarea name="text" cols="50" rows="10" onkeyup="count(this)"></textarea>
</form>
</body>
</html>
 
R

Randy Webb

McKirahan said the following on 9/11/2005 8:21 PM:
<html>
<head>
<title>count.htm</title>
<script type="text/javascript">
function count(that) {
window.status = that.value.length;

Why the status bar? That will utltimately fail in Mozilla based browsers
that have the ability to script the status bar disabled.


And please fix your OE so that it does not quote signatures.
 
A

ASM

Zoe said:
create an event for the onchange value

Not at all !
use : onkeyup
of the textarea, get the value of the
textarea and then count the chars.

<textarea
onkeyup="document.getElementById('count').innerHTML=this.value.length;">
</textarea>
<p id="count">
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top