tinymce detect change code example
Example 1: javascript detect input change
$('#inputID').on("change keyup paste", function() {
//my input text has changed
});
Example 2: tinymce event on change
tinymce.init({
selector: 'textarea',
setup: function(editor) {
editor.on('init', function(e) {
console.log('The Editor has initialized.');
});
}
});
COPY CODE