How to make it so that when loading ckeditor is deployed to the entire client part of the browser?

  • interesting - and what for? - Palmervan pm

1 answer 1

Option such (did not try)

CKEDITOR.on('instanceReady', function () { var e = CKEDITOR.instances.id; // textarea id e.execCommand('maximize'); }); 
  • Thank! It all worked. And you need this for one project when editing documents. - antonio