Tengo el siguiente codigo:
Código HTML:
<HTML> <head> <TITLE> Alertar caracteres al llegar a 100 </TITLE> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function textCounter(field, countfield, maxlimit) { if ( field.value.length > maxlimit) // if too long...trim it! field.value = field.value.substring(0, maxlimit); // otherwise, update 'characters left' counter else countfield.value = maxlimit - field.value.length; } // End --> </script> </head> <body> <textarea name="PreguntaClave" wrap=physical cols="73" rows="5" class="CampoForm" id="PreguntaClave" onKeyDown="textCounter(this.form.PreguntaClave,this.form.remLen,100);" onKeyUp="textCounter(this.form.PreguntaClave,this.form.remLen,100);"> </textarea> <input readonly type=text name=remLen size=3 maxlength=3 value="100"> </body> </HTML>
Como pueden observar ese codigo limitara y contara que dentro del textarea solo se puedan escribir 100 Caracteres.
Mi pregunta es, como puedo aparte de limitar y contar los caracteres, agregar un alert() al momento que lleguen a 100 caracteres, osea que salte un alert avisandole que ya ocuparon sus 100 caracteres.
Muchas gracias y saludos!