ck42

by bjoerne

HTML

<script src="http://ckeditor.com/apps/ckeditor/4.2/ckeditor.js"></script>
<div id="contenteditable"></div>
<div id="log"></div>

SCSS

#contenteditable {
    width: 300px;
    height: 200px;
    border: 1px solid red;
}

CoffeeScript

$('#contenteditable').prop('contenteditable', true)
editor = CKEDITOR.inline('contenteditable');
editor.on 'change', ->
    jqElem = $('#log')
    html = jqElem.html()
    html += 'change<br />'
    jqElem.html(html)