suyati / line-control

A Light Weight HTML5 Text Editor designed as a JQuery Plugin
Other
124 stars 90 forks source link

Limit of characters #103

Open gustavorangel121 opened 6 years ago

gustavorangel121 commented 6 years ago

Hi!

I would like to know if there is any possibility to limit the max amount of characters. Like, I want to put a limit of 400 characters. How to do this?

xinelabedin commented 5 years ago

// Use following code.

$("#long-description-editor").Editor(); $(".Editor-editor").on("keypress", function(){ var chars = $("#long-description-editor").Editor("getCharCount"); if(chars > 400){ alert('not allowed'); } });