I have in a form many editors tinymce
I get the editors like that
for (inst in tinyMCE.editors) {
let editor = tinyMCE.editors[inst];
}
I would like to block the insertion of other words based on a number set by me (max 15 words) in javascript
Is this possible?
Thank u