CKEditor QUAIL Tests

https://github.com/kevee/quail/blob/master/examples/wysiwyg/ckeditor.html

HTML

<link rel="stylesheet" href="https://raw.github.com/kevee/quail/master/examples/common/style.css">
<script src="http://cdn.jsdelivr.net/ckeditor/4.0/ckeditor.js"></script>
<form>
    <textarea class="ckeditor" id="editor1">Some text.</textarea>
    <textarea class="ckeditor" id="editor2">Some other text.</textarea>
</form>

JavaScript

CKEDITOR.on('instanceReady', function(evt) {
    $(evt.editor.container.$).find('iframe').contents().click(function() {
    var text = $(this).text();
        alert(text);
    });
});