1
I need to limit the number of characters in the Ckeditor.
I followed the step by step of this topic: Limiting text in CKEDITOR
But it didn’t work. Below the changes made to my code:
<textarea id="desc" name="desc" data-maxlen="10" rows="7" cols="45"</textarea>
The editor works, but the plugin does not.
ps. tried also add the folder "maxlenght" inside this plugin folder. Also it did not work.
Something wrong in its implementation?
Another question: how does this plugin work? it does not let pass the characters of the chosen amount? or it shows error after sending the form?
Ever since I thank.
Instead of
data-maxlen="10"
, trialmaxlength="10"
– Sam
Neither of them work.
– ARodrigues