Im using tinyMCe for my project.Everything is working fine but now i want to restrict the number of character that will be insert into tinyMce text
There is no tinymce configuration setting max_chars, except you implement it yourself:
tinyMCE.init({
...
max_chars : "10",
setup : function(ed) {
ed.onKeyDown.add(function(ed, evt) {
if ( $(ed.getBody()).text().length > ed.getParam('max_char')){
e.preventDefault();
e.stopPropagation();
return false;
}
});
}
});