CKEditor

by Eric Pias

HTML

<script src="//cdn.ckeditor.com/4.5.3/full-all/ckeditor.js"></script>
<textarea id="editor1">
    <table align="center" border="0" cellpadding="0" cellspacing="0">
        <tbody>
            <tr>
                <td align="center" bgcolor="#ffffff" height="64" style="DISPLAY: block; COLOR: #2980b9; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px" width="342"><a href="http://www.codinghorror.com" style="LINE-HEIGHT: 64px; WIDTH: 100%; DISPLAY: inline-block; FONT-FAMILY: arial, verdana, sans-serif; FONT-SIZE: 24px; FONT-WEIGHT: bold; TEXT-DECORATION: none; text-transform: uppercase;" target="" title=""><span style="COLOR: #2980b9">Styled Link</span> </a></td>
            </tr>
        </tbody>
    </table>
</textarea>

JavaScript

var config = {
    allowedContent: true,
    extraPlugins : 'filetools',
    filebrowserUploadUrl: 'http://httpbin.org/post'
    //uploadUrl : 'http://www.google.com'
};

var editor = CKEDITOR.replace('editor1', config);
console.log('testing1');

editor.on( 'fileUploadRequest', function( evt ) {
    console.log('fileUploadRequest called');

}, null, null, 4 ); // Listener with priority 4 will be executed before priority 5.