JSFiddle - React, Tailwind, and code Playground

by Panman8201

HTML

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/froala_editor.pkgd.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/froala_editor.pkgd.min.js"></script>
<div id="editor">
  <p>Foobar</p>
</div>
<button id="destroy">Destroy Editor</button>

JavaScript

let callback = function() {
	window.alert('called');
};

let editor = new FroalaEditor('#editor', function() {
	this.events.on('destroy', callback);
	this.events.on('destroy', callback);
});

document.getElementById("destroy").addEventListener("click", function(){
  editor.destroy();
});