Supongamos que tenemos un textarea llamada
msg, del cual queremos saber cuantos ingresan, necesitamos tambien un campo de texto llamado
ingresados donde se va a mostrar el numero.
Creamos la función:
<script>function cuenta(){
document.form.ingresados.value = document.form.msg.value.length;
}
</script>
y el codigo:(html)
<form action="#" name="form">
Mensaje:<br /><textarea name="msg" cols="20" rows="6"></textarea>
<br /><br />
Caracteres:<input name="ingresados" type="text" value="0" size="3" maxlength="3" readonly="readonly" /><br />
<input type="button" value="Cuenta" onclick="cuenta();" />
</form>