JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdn.ckeditor.com/4.4.7/standard/ckeditor.js"></script>

JavaScript

$(function(){
    // Create 150 textareas
    for (i=0; i<150; i++){
        $('body').append($('<textarea>', {id: 'text_' + i, class: 'ck', html: i}))
    }
    // Simple config
    var cfg = {"toolbar": [["Link", "Unlink"]], width: '350'};
    // Replace textareas with CKEditors
    var txts = $('textarea.ck');
    for (i=0; i<txts.length; i++){
        CKEDITOR.replace($(txts[i]).attr('id'), cfg);
    }
    // This will result in "too much recursion" error in Firefox. And
    // only first 95 textareas will be properly replaced. (this number varies?)
    // Tested in Firefox 38.0.1 and 34.0 (64-bit)
    // This demo works wihout erros on Chomium 43.0.2357.65 (64-bit)
});