contador de caracteres
CODIGO
<html>
<head>
<title>Contador de caracteres</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT>
//
function wordCount() {
textoArea = document.formulario.area.value;
numeroCaracteres = textoArea.length;
inicioespacio = /^ /
finespacio = / $/
variosespacios = /[ ]+/g
textoArea = textoArea.replace(inicioespacio,"");
textoArea = textoArea.replace(finespacio,"");
textoArea = textoArea.replace(variosespacios," ");
textoAreaDividido = textoArea.split(" ");
numeroPalabras = textoAreaDividido.length;
tC = (numeroCaracteres==1)?" carácter":" caracteres";
tP = (numeroPalabras==1)?" palabra":" palabras";
alert (numeroCaracteres + tC +" " + numeroPalabras + tP);
}
</SCRIPT>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<FORM NAME="formulario">
<TEXTAREA NAME="area" COLS=20 ROWS=10>Escribe tu texto</TEXTAREA>
<BR>
<INPUT TYPE="button" VALUE=" Mostrar numero de caracteres" onClick="wordCount();">
</FORM>
</body>
</html>