How to set up CKEditor for multiple instances with different heights?
I'd like to have multiple instances of CKEditor based on the same config settings, but with different heights. I tried setting up config with the default height, setting up the 1st instance, then overriding the height & setting up the 2nd instance: var config = { ..... height:'400' }; $('#editor1').ckeditor(config); config.height = '100'; $('#editor2').ckeditor(config); ...but I get two CKEditor instances that both have 100px height. I also tried this: CKEDITOR.replace('editor2',{ height: '100' }); .. I got error messages that the instance already existed. I searched around a bit & found