I have a textarea in a form, which has an editor so that the user can give different formats to the text. I do it with tinymce. Now, I need to control the amount of characters that you enter, so I do not want you to enter more than 200 (say a number).
<textarea id="detalle" name="detalle" rows="10" maxlength="2000"><?php if (isset($descripcion)) { echo $descripcion; }?></textarea>
the textarea I solve with a maxlenght but when I put the "link" to the tinymce plugin directly ignores it ... What can I do?