Skip to content

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.

character-counter

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>
  $(function() {
    $('div#froala-editor').froalaEditor({
      // Set maximum number of characters.
      charCounterMax: 140,
    })
  });
</script>
File: 3735