JavaScript Editor
Bind to the "change" event of jqxEditor. Author: http://jqwidgets.com
by jqwidgets
HTML
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<textarea id="editor"></textarea>
<br/>
<br/>
<div id='log'></div>
JavaScript
$('#editor').jqxEditor({
height: 400,
width: 800,
theme: 'energyblue'
});
$('#editor').on('change', function (event) {
$("#log").html($("#editor").val());
});