Skip to content
.github-star { padding-left: 15px; margin-bottom: 15px; }

Miscellaneous

Character Counter

Using the char_counter.min.js plugin it is possible to limit the number of characters that can be introduced into the WYSIWYG HTML editor.

Try it yourself:

You can type only 140 characters.


The maximum number of characters can be changed using the charCounterMax option.

Edit in JSFiddle

HTML

<div id="froala-editor">
  <p>You can type only 140 characters.</p>
</div>

JAVASCRIPT

<script>
  new FroalaEditor('div#froala-editor', {
    // Set maximum number of characters.
    charCounterMax: 140
  })
</script>
File: 1575