JSFiddle - React, Tailwind, and code Playground by Mladen Petrovic March 25, 2020 HTML <script src="https://rawgit.com/eu81273/jsfiddle-console/master/console.js"></script> <div contenteditable="true" id="editor">Please type something in here, not in the textarea below</div> <textarea id="log" rows="10" cols="40" readonly></textarea> JavaScript document.getElementById("editor").addEventListener("input", function(e) { document.getElementById("log").value += "input event fired\n"; console.log(e); }, false);