Event fires after change of text in the editor.
Parameters
| Name | Type | Description |
|---|---|---|
| e | {object} | event data |
Examples
sample
<textarea id="editor"></textarea>
<script>
$('#editor').editor({
changed: function (e) {
alert('changed is fired');
}
});
</script>