How to Count the Character and Word of the Rich Text item in Oracle Apex

Add The following Code On the JavaScript Initialization Code Of Your Item.

 

function(options) {
options.executeOnInitialization = function(editor) {
const plugin = editor.plugins.get(‘WordCount’);
editor.sourceElement.parentElement.parentElement.appendChild(plugin.wordCountContainer);
};
return options;
}

 

Comments