I use the built-in CKEditor function. I start a new instance of the editor every time a user hovers over a text area. The problem is that when the user first hovers over the text field and focuses on the text field, the editor toolbar takes a couple of seconds, because the editor loads all the necessary resources.
My question is: how can I preload all the necessary CKEditor resources during the onclick event, and not when the user hovers over the text area?
I tried adding all the assets to the HTML file and the editor appears instantly, however, when I look at the DOM, the file resources arrive twice. Meaning, even if the files are already present, CKEditor still downloads them.
user3758078
source share